summaryrefslogtreecommitdiff
path: root/testapp
diff options
context:
space:
mode:
authorHardik Ghaghada2013-06-04 12:47:17 +0530
committerHardik Ghaghada2013-06-04 12:47:17 +0530
commit2e2123067d2477602d5e05fab02b7d36396f2d1f (patch)
tree32f036043399723b95167c0cc9a3e517a35b064a /testapp
parent8b6ac259503323bc3d8333382d3769e5d10f162a (diff)
downloadonline_test-2e2123067d2477602d5e05fab02b7d36396f2d1f.tar.gz
online_test-2e2123067d2477602d5e05fab02b7d36396f2d1f.tar.bz2
online_test-2e2123067d2477602d5e05fab02b7d36396f2d1f.zip
Corrected a syntax error at line 479
Diffstat (limited to 'testapp')
-rw-r--r--testapp/exam/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testapp/exam/views.py b/testapp/exam/views.py
index 5a5f5fe..1d5d6f6 100644
--- a/testapp/exam/views.py
+++ b/testapp/exam/views.py
@@ -476,7 +476,7 @@ def automatic_questionpaper(request, questionpaper_id=None):
context = {'data': {'questions': fetched_questions,
'tags': tags,
'msg': msg}}
- return my_render_to_response\(
+ return my_render_to_response(
'exam/automatic_questionpaper.html', context,
context_instance=RequestContext(request))
else: