From 9f08e78705f4bd3fccf8c0a0932c659ab7eea4e1 Mon Sep 17 00:00:00 2001 From: Alison Hodges Date: Thu, 2 Jul 2015 10:52:37 -0400 Subject: [PATCH] fixed trailing white space errors --- lms/djangoapps/instructor/views/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lms/djangoapps/instructor/views/api.py b/lms/djangoapps/instructor/views/api.py index 55c5fcda3b..53a17617d6 100644 --- a/lms/djangoapps/instructor/views/api.py +++ b/lms/djangoapps/instructor/views/api.py @@ -1113,8 +1113,8 @@ def get_students_features(request, course_id, csv=False): # pylint: disable=red return JsonResponse({"status": success_status}) except AlreadyRunningError: already_running_status = _( - "An enrolled student profile report generation task is already in progress. " - "Check the 'Pending Tasks' table for the status of the task. When completed, " + "An enrolled student profile report generation task is already in progress. " + "Check the 'Pending Tasks' table for the status of the task. When completed, " "the report will be available for download in the table below.") return JsonResponse({"status": already_running_status})