From 671df0da02345710ebd4b18d45f2a573de350cc3 Mon Sep 17 00:00:00 2001 From: prathamesh Date: Tue, 24 Feb 2015 11:19:06 +0530 Subject: Removed print statement. --- testapp/exam/views.py | 1 - 1 file changed, 1 deletion(-) (limited to 'testapp/exam') 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: -- cgit