we should be returning the result, not None!

This commit is contained in:
Christopher Allan Webber 2013-04-19 16:28:24 -05:00
parent d1146101bb
commit 234ddad607

View File

@ -379,7 +379,7 @@ def hook_handle(hook_name, *args, **kwargs):
if result is None and default_handler is not None:
result = default_handler(*args, **kwargs)
return None
return result
def hook_runall(hook_name, *args, **kwargs):