From 3db3d7b74080635a7475a9fc556e5c8577f58aa2 Mon Sep 17 00:00:00 2001 From: Vik Paruchuri Date: Wed, 20 Feb 2013 13:31:06 -0500 Subject: [PATCH] Fix eta message slightly --- lms/djangoapps/open_ended_grading/open_ended_grading_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/open_ended_grading/open_ended_grading_util.py b/lms/djangoapps/open_ended_grading/open_ended_grading_util.py index f3871feec5..1826ecaedb 100644 --- a/lms/djangoapps/open_ended_grading/open_ended_grading_util.py +++ b/lms/djangoapps/open_ended_grading/open_ended_grading_util.py @@ -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