diff gui/containergui_base.py @ 148:2241722311bf

Moved the action module into the entities package. Removed the objects package.
author KarstenBock@gmx.net
date Sun, 09 Oct 2011 21:02:48 +0200
parents c28e29056218
children
line wrap: on
line diff
--- a/gui/containergui_base.py	Sun Oct 09 20:54:03 2011 +0200
+++ b/gui/containergui_base.py	Sun Oct 09 21:02:48 2011 +0200
@@ -18,7 +18,7 @@
 
 from parpg import vfs
 from parpg.gui import drag_drop_data as data_drag
-from parpg.objects.action import ACTIONS
+from parpg.entities.action import ACTIONS
 from parpg.entities import General
 
 class ContainerGUIBase(object):
@@ -142,7 +142,7 @@
     def executeMenuItem(self, action):
         """Executes the items action
         @param action: The action to run
-        @type action: Class derived from parpg.objects.action.Action
+        @type action: Class derived from parpg.entities.action.Action
         """
         action.execute()