diff options
author | maheshgudi | 2016-06-02 16:00:27 +0530 |
---|---|---|
committer | adityacp | 2016-07-27 22:52:23 +0530 |
commit | bb76e0a25b113b0f40b47f19eaa2c053e0b4e423 (patch) | |
tree | d3902ff71b3053d8f9f1be09cdea052570ec96a6 /yaksh/forms.py | |
parent | f5ea9ecf903360c2860293639d1c6ba7a78b2339 (diff) | |
download | online_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.py | 6 |
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"), ) |