summaryrefslogtreecommitdiff
path: root/yaksh/models.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/models.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/models.py')
-rw-r--r--yaksh/models.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/yaksh/models.py b/yaksh/models.py
index cc64b98..7f9eead 100644
--- a/yaksh/models.py
+++ b/yaksh/models.py
@@ -206,12 +206,6 @@ class Profile(models.Model):
"""Return the output directory for the user."""
user_dir = join(settings.OUTPUT_DIR, str(self.user.username))
- if not exists(user_dir):
- os.makedirs(user_dir)
- # Make it rwx by others.
- os.chmod(user_dir, stat.S_IROTH | stat.S_IWOTH | stat.S_IXOTH
- | stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR
- | stat.S_IRGRP | stat.S_IWGRP | stat.S_IXGRP)
return user_dir
@@ -680,7 +674,7 @@ class QuestionPaper(models.Model):
def create_demo_quiz_ppr(self, demo_quiz, user):
question_paper = QuestionPaper.objects.create(quiz=demo_quiz,
- total_marks=5.0,
+ total_marks=7.0,
shuffle_questions=True
)
questions = Question.objects.filter(active=True,