diff options
author | maheshgudi | 2017-10-03 16:41:52 +0530 |
---|---|---|
committer | maheshgudi | 2017-10-09 14:54:41 +0530 |
commit | db73441ae5abfdfa0f04d049a1c33a156ab553f4 (patch) | |
tree | ec6846f3801e97677b25a2bb51148543b986bf46 /yaksh | |
parent | 97a277cf5b86f60525f94302d5b04de420ad7212 (diff) | |
download | online_test-db73441ae5abfdfa0f04d049a1c33a156ab553f4.tar.gz online_test-db73441ae5abfdfa0f04d049a1c33a156ab553f4.tar.bz2 online_test-db73441ae5abfdfa0f04d049a1c33a156ab553f4.zip |
Allow file field and tags field to be skipped altogether in an yaml file
Diffstat (limited to 'yaksh')
-rw-r--r-- | yaksh/models.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/yaksh/models.py b/yaksh/models.py index 787daa6..9603282 100644 --- a/yaksh/models.py +++ b/yaksh/models.py @@ -420,9 +420,11 @@ class Question(models.Model): msg = "Questions Uploaded Successfully" for question in questions: question['user'] = user - file_names = question.pop('files') + file_names = question.pop('files') \ + if 'files' in question \ + else None + tags = question.pop('tags') if 'tags' in question else None test_cases = question.pop('testcase') - tags = question.pop('tags') que, result = Question.objects.get_or_create(**question) if file_names: que._add_files_to_db(file_names, file_path) |