diff options
Diffstat (limited to 'bin/manifest.py')
-rwxr-xr-x | bin/manifest.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/manifest.py b/bin/manifest.py index 6b100f0..0e56036 100755 --- a/bin/manifest.py +++ b/bin/manifest.py @@ -18,9 +18,14 @@ and other structures in the YAML file. .. _`PyYAML`: http://pyyaml.org/ """ +import logging + from _context import acispy from acispy import manifest +logging.basicConfig(level=logging.INFO) + + if __name__ == "__main__": manifest.main() |