diff -r ec7818110fd2 -r db306bbda381 app/soc/models/project_survey_record.py --- a/app/soc/models/project_survey_record.py Tue Jul 07 20:17:23 2009 -0500 +++ b/app/soc/models/project_survey_record.py Sat Jul 11 13:56:55 2009 +0200 @@ -36,6 +36,6 @@ """ #: Reference to the Project that this record belongs to. - project = db.ReferenceProperty(soc.models.student_project.StudentProject, - required=True, - collection_name="survey_records") + project = db.ReferenceProperty( + reference_class=soc.models.student_project.StudentProject, + required=True, collection_name="survey_records")