diff options
author | Christian Franke <nobody@nowhere.ws> | 2011-10-08 18:40:33 +0200 |
---|---|---|
committer | Christian Franke <nobody@nowhere.ws> | 2011-10-08 18:40:33 +0200 |
commit | 22a6407c2fb04b8803a8140692fcce04dfc9f199 (patch) | |
tree | 33cd5595143fbcc64cf1e25f24d2d19db84f5bf3 /scripts | |
parent | a2382cf8ca67d984595cecdc3502af3cdca6fbc2 (diff) |
fixup plugin manager
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/plugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/plugin.py b/scripts/plugin.py index 785a219..08f0461 100644 --- a/scripts/plugin.py +++ b/scripts/plugin.py @@ -10,7 +10,7 @@ class PluginManager(object): for plugin in self.plugins: try: method = getattr(plugin, name) - return_value = method(data, *args, **kwargs) + return_value = method(return_value, *args, **kwargs) processed = True except KeyError: pass |