Skip to content
Snippets Groups Projects
Commit b50f4e14 authored by Ned Batchelder's avatar Ned Batchelder
Browse files

fix: remove stray character in message

parent 404f61b9
No related branches found
No related tags found
No related merge requests found
......@@ -87,7 +87,7 @@ def parse_result_json(json_str):
# '@type' must be "Result"
result_type = json_obj.get("@type")
if result_type != "Result":
msg = f"JSON object does not contain correct @type attribute (should be 'Result', is z{result_type!r})"
msg = f"JSON object does not contain correct @type attribute (should be 'Result', is {result_type!r})"
log.error("[LTI] %s", msg)
raise Lti1p1Error(msg)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment