diff -r 53fabbd7c6f3 -r a3513142ae01 app/soc/models/survey_record.py --- 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,