From: Zooko O'Whielacronx Date: Mon, 13 Apr 2009 17:41:38 +0000 (-0700) Subject: trivial: fix comment X-Git-Tag: allmydata-tahoe-1.4.0~3 X-Git-Url: https://git.rkrishnan.org/uri/URI:DIR2:%5B%5E?a=commitdiff_plain;h=77b578928ed1b3f09d86f030364d73d70a8f8167;p=tahoe-lafs%2Ftahoe-lafs.git trivial: fix comment --- diff --git a/src/allmydata/scripts/tahoe_backup.py b/src/allmydata/scripts/tahoe_backup.py index e2b9bced..d87196b7 100644 --- a/src/allmydata/scripts/tahoe_backup.py +++ b/src/allmydata/scripts/tahoe_backup.py @@ -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: