app/soc/logic/cleaning.py
changeset 1085 0afbdd0905ef
parent 1083 b8018d7a9f23
child 1088 7ad48d59da3d
--- a/app/soc/logic/cleaning.py	Fri Jan 30 17:23:19 2009 +0000
+++ b/app/soc/logic/cleaning.py	Fri Jan 30 17:38:28 2009 +0000
@@ -199,7 +199,7 @@
 
       # check if there is already an application with the given link_id
       fields = {'link_id': club_link_id,
-                'state': ['accepted','ignored','needs review','completed']}
+                'status': ['accepted','ignored','needs review','completed']}
       club_app_entity = club_app_logic.logic.getForFields(fields, unique=True)
 
       if club_app_entity:
@@ -207,7 +207,7 @@
             ugettext('This link ID is already in use, please specify another one'))
 
       # check if there is already a club with the given link_id
-      fields['state'] = ['new', 'active', 'inactive']
+      fields['status'] = ['new', 'active', 'inactive']
       club_entity = club_logic.logic.getForFields(fields, unique=True)
 
       if club_entity: