diff --git a/hyde/plugin.py b/hyde/plugin.py index 2a24055..62a72fc 100644 --- a/hyde/plugin.py +++ b/hyde/plugin.py @@ -40,8 +40,9 @@ class PluginProxy(object): # "\tCalling plugin [%s]", # plugin.__class__.__name__) function = getattr(plugin, method_name) - res = function(*args) - if res: + newres = function(*args) + if newres: + res = newres targs = list(args) last = None if len(targs):