mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-06 02:16:45 +00:00
fix(parse_duration): resolve error when parsing durations in seconds
- Added support for parsing durations specified in seconds (e.g., "10s"). - Fixed an issue where configuring seconds previously resulted in errors due to missing elif statement.
This commit is contained in:
parent
048c0850a8
commit
a555c13f38
@ -53,12 +53,14 @@ def iso_utc_time_to_seconds(isotime, _conversion_re=re.compile(r"(?P<year>\d{4})
|
||||
def parse_duration(s):
|
||||
orig = s
|
||||
unit = None
|
||||
SECOND = 1
|
||||
DAY = 24*60*60
|
||||
MONTH = 31*DAY
|
||||
YEAR = 365*DAY
|
||||
if s.endswith("s"):
|
||||
unit = SECOND
|
||||
s = s[:-1]
|
||||
if s.endswith("day"):
|
||||
elif s.endswith("day"):
|
||||
unit = DAY
|
||||
s = s[:-len("day")]
|
||||
elif s.endswith("month"):
|
||||
|
Loading…
x
Reference in New Issue
Block a user