Changeset - a70552534acd
[Not reviewed]
0 1 0
Lance Edgar (lance) - 7 years ago 2018-02-12 17:43:39
lance@edbob.org
Tweak `util.pretty_hours()` logic per python 3
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
rattail/util.py
Show inline comments
 
@@ -187,7 +187,7 @@ def pretty_hours(hours=None, seconds=None):
 
    if hours is None:
 
        hours = datetime.timedelta(seconds=seconds)
 
    minutes = (hours.days * 1440) + (hours.seconds / 60)
 
    return '{}:{:02d}'.format(minutes // 60, minutes % 60)
 
    return "{}:{:02d}".format(int(minutes // 60), int(minutes % 60))
 

	
 

	
 
def pretty_quantity(value, empty_zero=False):
0 comments (0 inline, 0 general)