From 77b578928ed1b3f09d86f030364d73d70a8f8167 Mon Sep 17 00:00:00 2001 From: Zooko O'Whielacronx Date: Mon, 13 Apr 2009 10:41:38 -0700 Subject: [PATCH] trivial: fix comment --- src/allmydata/scripts/tahoe_backup.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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: -- 2.45.2