diff options
author | prathamesh | 2015-02-24 11:19:06 +0530 |
---|---|---|
committer | prathamesh | 2015-02-24 11:19:06 +0530 |
commit | 671df0da02345710ebd4b18d45f2a573de350cc3 (patch) | |
tree | b94c7510bd4cca30288ac233955e1497ca42db60 /testapp/exam/views.py | |
parent | caf153bcaa8b9a0096a4653b562198f2ba2cef9a (diff) | |
download | online_test-671df0da02345710ebd4b18d45f2a573de350cc3.tar.gz online_test-671df0da02345710ebd4b18d45f2a573de350cc3.tar.bz2 online_test-671df0da02345710ebd4b18d45f2a573de350cc3.zip |
Removed print statement.
Diffstat (limited to 'testapp/exam/views.py')
-rw-r--r-- | testapp/exam/views.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/testapp/exam/views.py b/testapp/exam/views.py index 94a5ffb..8d7dd18 100644 --- a/testapp/exam/views.py +++ b/testapp/exam/views.py @@ -733,7 +733,6 @@ def question(request, q_id, attempt_no, questionpaper_id, success_msg=None): all_questions = q_append questions = {} for num, value in enumerate(all_questions, 1): - print num, value questions[value] = num questions = collections.OrderedDict(sorted(questions.items())) if success_msg is None: |