Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
6880fa14
Commit
6880fa14
authored
Jun 01, 2017
by
Eric Fischer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More specific grace_course logging
parent
b69adbfc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
+5
-1
lms/djangoapps/instructor_task/tasks_helper/grades.py
+5
-1
No files found.
lms/djangoapps/instructor_task/tasks_helper/grades.py
View file @
6880fa14
...
@@ -191,7 +191,11 @@ class CourseGradeReport(object):
...
@@ -191,7 +191,11 @@ class CourseGradeReport(object):
batched_rows
=
self
.
_batched_rows
(
context
)
batched_rows
=
self
.
_batched_rows
(
context
)
context
.
update_status
(
u'Compiling grades'
)
context
.
update_status
(
u'Compiling grades'
)
success_rows
,
error_rows
=
self
.
_compile
(
context
,
batched_rows
)
try
:
success_rows
,
error_rows
=
self
.
_compile
(
context
,
batched_rows
)
except
Exception
:
# pylint:disable=broad-except
TASK_LOG
.
exception
(
'Something failed in compilation'
)
return
context
.
update_status
(
'Failed grades'
)
context
.
update_status
(
u'Uploading grades'
)
context
.
update_status
(
u'Uploading grades'
)
self
.
_upload
(
context
,
success_headers
,
success_rows
,
error_headers
,
error_rows
)
self
.
_upload
(
context
,
success_headers
,
success_rows
,
error_headers
,
error_rows
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment