]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
trivial: fix comment
authorZooko O'Whielacronx <zooko@zooko.com>
Mon, 13 Apr 2009 17:41:38 +0000 (10:41 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Mon, 13 Apr 2009 17:41:38 +0000 (10:41 -0700)
src/allmydata/scripts/tahoe_backup.py

index e2b9bcede7ba85addc55aedef08f57ac3aaae1bf..d87196b7943cdb9cea903bd83e262bebcd541b2b 100644 (file)
@@ -24,10 +24,9 @@ def parse_old_timestamp(s, options):
     try:
         if not s.endswith("Z"):
             raise ValueError
-        # the "local" in this "localseconds" is superfluous and
-        # misleading. This returns seconds-since-epoch for an
-        # ISO-8601-ish-formatted UTC time string. This might raise
-        # ValueError if the string is not in the right format.
+        # This returns seconds-since-epoch for an ISO-8601-ish-formatted UTC
+        # time string. This might raise ValueError if the string is not in the
+        # right format.
         when = time_format.iso_utc_time_to_seconds(s[:-1])
         return when
     except ValueError: