Make hooks module import optional
There is no hooks module available when running the extract_swift_flags.py locally, so making this import optional. Change-Id: I65ebacd1e3e4cf66ece0a9fcbbc785d79278e8bb
This commit is contained in:
parent
59542bc572
commit
c93f4853f6
@ -36,7 +36,10 @@ except Exception:
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
sys.path.insert(0, '.')
|
sys.path.insert(0, '.')
|
||||||
from hooks import HOOKS # noqa
|
try:
|
||||||
|
from hooks import HOOKS # noqa
|
||||||
|
except ImportError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
EXTENSIONS = ['oslo.cache',
|
EXTENSIONS = ['oslo.cache',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user