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