Merge pull request #19209 from edx/nedbat/trim-trailing-comma

Remove a mistaken trailing comma
This commit is contained in:
Ned Batchelder
2018-11-02 11:39:38 -04:00
committed by GitHub

View File

@@ -1221,7 +1221,7 @@ def create_xblock_info(xblock, data=None, metadata=None, include_ancestor_info=F
'enable_timed_exams': xblock.enable_timed_exams
})
elif xblock.category == 'sequential':
rules_url = settings.PROCTORING_SETTINGS.get('LINK_URLS', {}).get('online_proctoring_rules', ""),
rules_url = settings.PROCTORING_SETTINGS.get('LINK_URLS', {}).get('online_proctoring_rules', "")
xblock_info.update({
'is_proctored_exam': xblock.is_proctored_exam,
'online_proctoring_rules': rules_url,