diff options
author | Hardik Ghaghada | 2013-06-04 12:47:17 +0530 |
---|---|---|
committer | Hardik Ghaghada | 2013-06-04 12:47:17 +0530 |
commit | 2e2123067d2477602d5e05fab02b7d36396f2d1f (patch) | |
tree | 32f036043399723b95167c0cc9a3e517a35b064a /testapp/exam/views.py | |
parent | 8b6ac259503323bc3d8333382d3769e5d10f162a (diff) | |
download | online_test-2e2123067d2477602d5e05fab02b7d36396f2d1f.tar.gz online_test-2e2123067d2477602d5e05fab02b7d36396f2d1f.tar.bz2 online_test-2e2123067d2477602d5e05fab02b7d36396f2d1f.zip |
Corrected a syntax error at line 479
Diffstat (limited to 'testapp/exam/views.py')
-rw-r--r-- | testapp/exam/views.py | 2 |
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: |