Skip to content

Commit

Permalink
Should be Hours Instead of Days
Browse files Browse the repository at this point in the history
  • Loading branch information
super3 committed Jun 12, 2015
1 parent d37888f commit c152725
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dataserv/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def secs_to_mins(seconds): # pragma: no cover
elif seconds < 3600:
return "{0} minute(s)".format(int(seconds/60))
else:
return "{0} day(s)".format(int(seconds/3600))
return "{0} hour(s)".format(int(seconds/3600))


# Routes
Expand Down

0 comments on commit c152725

Please sign in to comment.