Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Lourenzutti committed Jan 28, 2022
1 parent 15c7360 commit 05296d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rudaux/course_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def _create_override(config, course_id, assignment, override):
overs = _canvas_get_overrides(config, course_id, assignment)
n_match = len([over for over in overs if over['title'] == override['title']])
if n_match != 1:
sig = signals.FAIL(f"override for assignment {assignment['name']} ({assignment['id'])}) failed to upload to Canvas")
sig = signals.FAIL(f"override for assignment {assignment['name']} ({assignment['id']}) failed to upload to Canvas")
sig.assignment = assignment
sig.attempted_override = override
sig.overrides = overs
Expand Down

0 comments on commit 05296d7

Please sign in to comment.