app/soc/logic/models/club_app.py
changeset 1147 5b5ce5056a2a
parent 1115 0a723ff3d27c
child 1307 091a21cf3627
--- a/app/soc/logic/models/club_app.py	Sun Feb 01 16:00:42 2009 +0000
+++ b/app/soc/logic/models/club_app.py	Sun Feb 01 16:03:58 2009 +0000
@@ -33,11 +33,13 @@
   """
 
   def __init__(self, model=soc.models.club_app.ClubApplication,
-               base_model=soc.models.group_app.GroupApplication):
+               base_model=soc.models.group_app.GroupApplication,
+               scope_logic=None):
     """Defines the name, key_name and model for this entity.
     """
 
-    super(Logic, self).__init__(model=model, base_model=base_model)
+    super(Logic, self).__init__(model=model, base_model=base_model,
+        scope_logic=scope_logic)
 
   def getKeyValuesFromEntity(self, entity):
     """See base.Logic.getKeyNameValues.