Skip to content

Commit f76a2ba

Browse files
committed
Fix a small bug in the Length class.
1 parent f21269c commit f76a2ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sc2reader/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ def hours(self):
680680
@property
681681
def mins(self):
682682
"""The number of minutes in excess of the hours."""
683-
return self.seconds/60
683+
return (self.seconds/60)%60
684684

685685
@property
686686
def secs(self):

0 commit comments

Comments
 (0)