Skip to content
Snippets Groups Projects
Commit f9fe750a authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

List loading hooks in QA.

Reviewed-by: schreiberal
parent 8bb7c6cb
No related branches found
No related tags found
No related merge requests found
...@@ -232,6 +232,7 @@ def LoadHooks(): ...@@ -232,6 +232,7 @@ def LoadHooks():
for name in utils.ListVisibleFiles(hooks_dir): for name in utils.ListVisibleFiles(hooks_dir):
if name.endswith('.py'): if name.endswith('.py'):
# Load and instanciate hook # Load and instanciate hook
print "Loading hook %s" % name
_hooks.append(__import__(name[:-3], None, None, ['']).hook()) _hooks.append(__import__(name[:-3], None, None, ['']).hook())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment