File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
nbgrader/server_extensions/assignment_list Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -77,8 +77,8 @@ def list_released_assignments(self, course_id=None):
7777 assignments = lister .start ()
7878
7979 except Exception as e :
80+ self .log .error (traceback .format_exc ())
8081 if isinstance (e , ExchangeError ):
81- self .log .error (traceback .format_exc ())
8282 retvalue = {
8383 "success" : False ,
8484 "value" : """The exchange directory does not exist and could
@@ -122,8 +122,8 @@ def list_submitted_assignments(self, course_id=None):
122122 assignments = lister .start ()
123123
124124 except Exception as e :
125+ self .log .error (traceback .format_exc ())
125126 if isinstance (e , ExchangeError ):
126- self .log .error (traceback .format_exc ())
127127 retvalue = {
128128 "success" : False ,
129129 "value" : """The exchange directory does not exist and could
You can’t perform that action at this time.
0 commit comments