From f9fe750a1f6de02492d917c6f80de0a1998fe667 Mon Sep 17 00:00:00 2001 From: Michael Hanselmann <hansmi@google.com> Date: Thu, 22 Nov 2007 12:17:07 +0000 Subject: [PATCH] List loading hooks in QA. Reviewed-by: schreiberal --- qa/qa_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/qa/qa_utils.py b/qa/qa_utils.py index e5ae41416..463240c0a 100644 --- a/qa/qa_utils.py +++ b/qa/qa_utils.py @@ -232,6 +232,7 @@ def LoadHooks(): for name in utils.ListVisibleFiles(hooks_dir): if name.endswith('.py'): # Load and instanciate hook + print "Loading hook %s" % name _hooks.append(__import__(name[:-3], None, None, ['']).hook()) -- GitLab