Style fixes in seed_db module.
authorPawel Solyga <Pawel.Solyga@gmail.com>
Thu, 24 Sep 2009 21:15:45 +0200
changeset 2972 1e1b8f22e153
parent 2971 4337dfc33633
child 2973 ba3f2522e8df
Style fixes in seed_db module.
app/soc/models/seed_db.py
--- a/app/soc/models/seed_db.py	Thu Sep 24 21:07:31 2009 +0200
+++ b/app/soc/models/seed_db.py	Thu Sep 24 21:15:45 2009 +0200
@@ -19,7 +19,7 @@
 
 __authors__ = [
     '"Sverre Rabbelier" <sverre@rabbelier.nl>',
-    'JamesLevy" <jamesalexanderlevy@gmail.com>',
+    '"James Levy" <jamesalexanderlevy@gmail.com>',
   ]
 
 
@@ -992,7 +992,6 @@
       user, org, org_app, mentor, student_proposal
 
     Redirects if end < goal, incrementing both start and end with step.
-
   """
 
   get_args = request.GET
@@ -1032,21 +1031,18 @@
       entity = model(**properties)
       if seed_type == 'survey':
         survey_content = survey_logic.createSurvey(properties['fields'],
-                                                    properties['schema'],
-                                                    this_survey=None
-                                                    )
+                                                   properties['schema'],
+                                                   this_survey=None)
         entity.this_survey = survey_content
       elif seed_type == 'survey_answer':
         record = SurveyRecord.gql("WHERE user = :1 AND this_survey = :2",
-                                  properties['user'], properties['_survey']
-                                  ).get()
+            properties['user'], properties['_survey']).get()
         entity = survey_logic.updateSurveyRecord(properties['user'],
-                                                   properties['_survey'],
-                                                   record,
-                                                   properties['_fields']
-                                                   )
+                                                 properties['_survey'],
+                                                 record,
+                                                 properties['_fields'])
       entity.put()
-      if seed_type == 'survey': survey_logic._onCreate(entity) 
+      if seed_type == 'survey': survey_logic._onCreate(entity)
 
   if end < goal:
     info = {