Minor stylefix to StudentProject model.
authorLennard de Rijk <ljvderijk@gmail.com>
Wed, 08 Jul 2009 15:45:53 +0200
changeset 2574 402e4a979e77
parent 2573 f09f317769c4
child 2575 e319fd52cbc4
Minor stylefix to StudentProject model.
app/soc/models/student_project.py
--- a/app/soc/models/student_project.py	Wed Jul 08 15:44:54 2009 +0200
+++ b/app/soc/models/student_project.py	Wed Jul 08 15:45:53 2009 +0200
@@ -82,7 +82,8 @@
   #: withdrawn: This project has been withdrawn from the program by a Program
   #:            Administrator or higher.
   #: invalid: This project has been marked as invalid because it was deleted
-  status = db.StringProperty(required=True, default='accepted',
+  status = db.StringProperty(
+      required=True, default='accepted',
       choices=['accepted', 'failed', 'completed', 'withdrawn', 'invalid'])
 
   #: List of all processed GradingRecords which state a pass for this project.