better default values for formatDuration()
This commit is contained in:
parent
5d033c9aed
commit
eaa1e15d0b
1 changed files with 4 additions and 4 deletions
|
@ -139,21 +139,21 @@ def plural(amount, unit, plural='s'):
|
||||||
else: unit = plural
|
else: unit = plural
|
||||||
return "%s %s" % (formatThousands(amount), unit)
|
return "%s %s" % (formatThousands(amount), unit)
|
||||||
|
|
||||||
def formatDuration(ms, verbosity=0, years=False, hours=False, milliseconds=False):
|
def formatDuration(ms, verbosity=0, years=True, hours=True, milliseconds=True):
|
||||||
'''
|
'''
|
||||||
verbosity
|
verbosity
|
||||||
0: D:HH:MM:SS
|
0: D:HH:MM:SS
|
||||||
1: Dd Hh Mm Ss
|
1: Dd Hh Mm Ss
|
||||||
2: D days H hours M minutes S seconds
|
2: D days H hours M minutes S seconds
|
||||||
years
|
years
|
||||||
False: 366 days are 366 days
|
|
||||||
True: 366 days are 1 year 1 day
|
True: 366 days are 1 year 1 day
|
||||||
|
False: 366 days are 366 days
|
||||||
hours
|
hours
|
||||||
False: 30 seconds are 00:30
|
|
||||||
True: 30 seconds are 00:00:30
|
True: 30 seconds are 00:00:30
|
||||||
|
False: 30 seconds are 00:30
|
||||||
milliseconds
|
milliseconds
|
||||||
False: never display milliseconds
|
|
||||||
True: always display milliseconds
|
True: always display milliseconds
|
||||||
|
False: never display milliseconds
|
||||||
'''
|
'''
|
||||||
if years:
|
if years:
|
||||||
y = int(ms / 31536000000)
|
y = int(ms / 31536000000)
|
||||||
|
|
Loading…
Reference in a new issue