summaryrefslogtreecommitdiff
path: root/yaksh/views.py
diff options
context:
space:
mode:
authorPrabhu Ramachandran2016-10-26 18:42:08 +0530
committerGitHub2016-10-26 18:42:08 +0530
commitf563640af941a50642dc5eb6e63b1d63a1685046 (patch)
treef4326fe26c0198a0b5a331fe9ec74e6a036ef329 /yaksh/views.py
parent08d8478a6a57991b0130c5610db6efa7bc9e5a66 (diff)
parenta08fab86403b7aa2f813e5bafab08f7777ac3537 (diff)
downloadonline_test-f563640af941a50642dc5eb6e63b1d63a1685046.tar.gz
online_test-f563640af941a50642dc5eb6e63b1d63a1685046.tar.bz2
online_test-f563640af941a50642dc5eb6e63b1d63a1685046.zip
Merge pull request #149 from adityacp/fixed_output_dir_creation
Fixed output directory creation
Diffstat (limited to 'yaksh/views.py')
-rw-r--r--yaksh/views.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/yaksh/views.py b/yaksh/views.py
index 68e641e..4706222 100644
--- a/yaksh/views.py
+++ b/yaksh/views.py
@@ -415,8 +415,6 @@ def start(request, questionpaper_id=None, attempt_num=None):
msg = 'You do not have a profile and cannot take the quiz!'
raise Http404(msg)
new_paper = quest_paper.make_answerpaper(user, ip, attempt_num)
- # Make user directory.
- user_dir = new_paper.user.profile.get_user_dir()
return show_question(request, new_paper.current_question(), new_paper)