summaryrefslogtreecommitdiff
path: root/yaksh/forms.py
diff options
context:
space:
mode:
authormaheshgudi2016-06-02 16:00:27 +0530
committeradityacp2016-07-27 22:52:23 +0530
commitbb76e0a25b113b0f40b47f19eaa2c053e0b4e423 (patch)
treed3902ff71b3053d8f9f1be09cdea052570ec96a6 /yaksh/forms.py
parentf5ea9ecf903360c2860293639d1c6ba7a78b2339 (diff)
downloadonline_test-bb76e0a25b113b0f40b47f19eaa2c053e0b4e423.tar.gz
online_test-bb76e0a25b113b0f40b47f19eaa2c053e0b4e423.tar.bz2
online_test-bb76e0a25b113b0f40b47f19eaa2c053e0b4e423.zip
changed model class name Stdout to Stdio
Diffstat (limited to 'yaksh/forms.py')
-rw-r--r--yaksh/forms.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/yaksh/forms.py b/yaksh/forms.py
index a443e34..6bea0c8 100644
--- a/yaksh/forms.py
+++ b/yaksh/forms.py
@@ -1,9 +1,9 @@
from django import forms
-from yaksh.models import get_model_class, Profile, Quiz, Question, TestCase, Course, StandardTestCase, StdoutBasedTestCase
+from yaksh.models import get_model_class, Profile, Quiz, Question, TestCase, Course, StandardTestCase, StdioBasedTestCase
from django.contrib.auth import authenticate
from django.contrib.auth.models import User
-from django.contrib.contenttypes.models import ContentType
+from django.contrib.contenttypes.models import ContentType
from taggit.managers import TaggableManager
from taggit.forms import TagField
@@ -33,7 +33,7 @@ question_types = (
test_case_types = (
("standardtestcase", "Standard Testcase"),
- ("stdoutbasedtestcase", "Stdout Based Testcase"),
+ ("stdiobasedtestcase", "Stdio Based Testcase"),
("mcqtestcase", "MCQ Testcase"),
)