From db66f70b447c0d32495c9c97736f09a180560c49 Mon Sep 17 00:00:00 2001 From: maheshgudi Date: Tue, 3 Oct 2017 16:41:52 +0530 Subject: Allow file field and tags field to be skipped altogether in an yaml file --- yaksh/models.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'yaksh') diff --git a/yaksh/models.py b/yaksh/models.py index 4859d3e..5747f13 100644 --- a/yaksh/models.py +++ b/yaksh/models.py @@ -419,9 +419,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) -- cgit