app/soc/modules/ghop/logic/models/task.py
changeset 2407 e23fce20ad3a
parent 2401 bf70c5a0ef66
child 2823 21c222535654
--- a/app/soc/modules/ghop/logic/models/task.py	Mon Jun 08 08:42:13 2009 +0200
+++ b/app/soc/modules/ghop/logic/models/task.py	Mon Jun 08 08:48:24 2009 +0200
@@ -26,17 +26,17 @@
 
 import soc.models.linkable
 
-from soc.modules.ghop.logic.models import organization as ghop_org_logic
-from soc.modules.ghop.models import task as ghop_task_model
+import soc.modules.ghop.logic.models.organization
+import soc.modules.ghop.models.task
 
 
 class Logic(linkable.Logic):
   """Logic methods for the GHOPTask model.
   """
 
-  def __init__(self, model=ghop_task_model.GHOPTask,
+  def __init__(self, model=soc.modules.ghop.models.task.GHOPTask,
                base_model=soc.models.linkable.Linkable, 
-               scope_logic=ghop_org_logic):
+               scope_logic=soc.modules.ghop.logic.models.organization):
     """Defines the name, key_name and model for this entity.
     """