diff options
author | prathamesh | 2014-06-05 18:44:08 +0530 |
---|---|---|
committer | prathamesh | 2014-06-05 18:44:08 +0530 |
commit | 7481ac647eb08b29636041ce717fe7ac512a7562 (patch) | |
tree | fb159a8542b4e0df7d5f9c5428046073af1869e0 /testapp/exam/forms.py | |
parent | 8f80359989640e77797fedf9f28f981058f47e12 (diff) | |
download | online_test-7481ac647eb08b29636041ce717fe7ac512a7562.tar.gz online_test-7481ac647eb08b29636041ce717fe7ac512a7562.tar.bz2 online_test-7481ac647eb08b29636041ce717fe7ac512a7562.zip |
Fixed indentation.
Diffstat (limited to 'testapp/exam/forms.py')
-rw-r--r-- | testapp/exam/forms.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/testapp/exam/forms.py b/testapp/exam/forms.py index 26d9a2d..b606224 100644 --- a/testapp/exam/forms.py +++ b/testapp/exam/forms.py @@ -13,13 +13,13 @@ from string import letters, punctuation, digits import datetime QUESTION_TYPE_CHOICES = ( - ("python", "Python"), - ("bash", "Bash"), - ("mcq", "MCQ"), - ("C", "C Language"), - ("C++", "C++ Language"), - ("java", "Java Language"), - ("scilab", "Scilab"), + ("python", "Python"), + ("bash", "Bash"), + ("mcq", "MCQ"), + ("C", "C Language"), + ("C++", "C++ Language"), + ("java", "Java Language"), + ("scilab", "Scilab"), ) UNAME_CHARS = letters + "._" + digits |