Commit 3db3d7b7 by Vik Paruchuri

Fix eta message slightly

parent 59e36476
......@@ -8,5 +8,5 @@ def convert_seconds_to_human_readable(seconds):
else:
human_string = "{0} days".format(round(seconds/(60*60*24),1))
eta_string = "In {0}.".format(human_string)
eta_string = "{0}".format(human_string)
return eta_string
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment