From 2e2123067d2477602d5e05fab02b7d36396f2d1f Mon Sep 17 00:00:00 2001 From: Hardik Ghaghada Date: Tue, 4 Jun 2013 12:47:17 +0530 Subject: Corrected a syntax error at line 479 --- testapp/exam/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit