Commit 57320a34 by Chris Dodge

fix upper() mistake

parent 53e3b1d5
...@@ -212,7 +212,7 @@ def create_exam_attempt(exam_id, user_id, taking_as_proctored=False): ...@@ -212,7 +212,7 @@ def create_exam_attempt(exam_id, user_id, taking_as_proctored=False):
allowance_extra_mins = int(allowance.value) allowance_extra_mins = int(allowance.value)
allowed_time_limit_mins += allowance_extra_mins allowed_time_limit_mins += allowance_extra_mins
attempt_code = unicode(uuid.uuid4().upper()) attempt_code = unicode(uuid.uuid4()).upper()
external_id = None external_id = None
if taking_as_proctored: if taking_as_proctored:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment