Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/addons/chainaction.py
diff options
context:
space:
mode:
Diffstat (limited to 'addons/chainaction.py')
-rw-r--r--addons/chainaction.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/addons/chainaction.py b/addons/chainaction.py
index 9e8b6c8..cc610d6 100644
--- a/addons/chainaction.py
+++ b/addons/chainaction.py
@@ -17,13 +17,8 @@
from ..actions import *
class ChainAction(Action):
- actions = TAddonListProperty()
-
"""Utility class to allow executing actions in a specific order"""
- def __init__(self, actions=[]):
- """ChainAction(action1, ... ) builds a chain of actions"""
- Action.__init__(self)
- self.actions = actions
+ actions = TAddonListProperty()
def do(self,**kwargs):
"""do() each action in the chain"""