app/soc/models/survey_record.py
changeset 2515 a3513142ae01
parent 2493 0aabd2d76606
child 2588 db306bbda381
--- a/app/soc/models/survey_record.py	Fri Jul 03 18:39:30 2009 +0200
+++ b/app/soc/models/survey_record.py	Fri Jul 03 19:15:09 2009 +0200
@@ -40,8 +40,7 @@
   """
 
   #: The survey for which this entity is a record.
-  survey = db.ReferenceProperty(Survey,
-                                collection_name="survey_records")
+  survey = db.ReferenceProperty(Survey, collection_name="survey_records")
 
   #: Date when this record was created.
   created = db.DateTimeProperty(auto_now_add=True)
@@ -63,6 +62,8 @@
 
 
 class SurveyRecord(BaseSurveyRecord):
+  """Record produced by taking a Survey.
+  """
 
   #: Reference to the User entity which took this survey.
   user = db.ReferenceProperty(reference_class=soc.models.user.User,