summaryrefslogtreecommitdiff
path: root/testapp
diff options
context:
space:
mode:
authorprathamesh2014-06-05 18:44:08 +0530
committerprathamesh2014-06-05 18:44:08 +0530
commit7481ac647eb08b29636041ce717fe7ac512a7562 (patch)
treefb159a8542b4e0df7d5f9c5428046073af1869e0 /testapp
parent8f80359989640e77797fedf9f28f981058f47e12 (diff)
downloadonline_test-7481ac647eb08b29636041ce717fe7ac512a7562.tar.gz
online_test-7481ac647eb08b29636041ce717fe7ac512a7562.tar.bz2
online_test-7481ac647eb08b29636041ce717fe7ac512a7562.zip
Fixed indentation.
Diffstat (limited to 'testapp')
-rw-r--r--testapp/exam/forms.py14
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