Skip to content

Commit

Permalink
Host: Fixed bug in rebuild time checker
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Feb 6, 2012
1 parent 8b6ec64 commit a8f27fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/host/doomsday-host
Expand Up @@ -126,7 +126,7 @@ def timeInRange(mark, start, end):
return (time.strftime('%a', gt),
time.strftime('%H', gt),
time.strftime('%M', gt))
def mins(h, m): return m + 60 * h
def mins(h, m): return int(m) + 60 * int(h)

s = breakTime(start)
e = breakTime(end)
Expand Down

0 comments on commit a8f27fb

Please sign in to comment.