app/soc/models/survey_record_group.py
changeset 2515 a3513142ae01
parent 2446 0cf8f034f52d
--- a/app/soc/models/survey_record_group.py	Fri Jul 03 18:39:30 2009 +0200
+++ b/app/soc/models/survey_record_group.py	Fri Jul 03 19:15:09 2009 +0200
@@ -51,12 +51,14 @@
   # it possible to setup which surveys should be grouped.
 
   #: Mentor SurveyRecord for this evaluation.
-  mentor_record = db.ReferenceProperty(GradingProjectSurveyRecord, required=False,
-                              collection_name='mentor_record_groups')
+  mentor_record = db.ReferenceProperty(GradingProjectSurveyRecord,
+                                       required=False,
+                                       collection_name='mentor_record_groups')
 
   #: Student SurveyRecord for this evaluation.
-  student_record = db.ReferenceProperty(ProjectSurveyRecord, required=False,
-                              collection_name='student_record_groups')
+  student_record = db.ReferenceProperty(
+      ProjectSurveyRecord, required=False,
+      collection_name='student_record_groups')
 
   #: Project for this evaluation.
   project = db.ReferenceProperty(soc.models.student_project.StudentProject,