diff options
author | Scott Dodson <sdodson@redhat.com> | 2016-08-24 15:37:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-24 15:37:47 -0400 |
commit | 476bb76ea251a54ac1d4dc43622bda9831f499bc (patch) | |
tree | 3fa3dafc3f02ca4e5135eaf7cacea149a9065016 /utils/src/ooinstall/variants.py | |
parent | 6672dc48ceec8a3f918859a539402b57df43f2c2 (diff) | |
parent | ddbd7dada694bda3777d25e5e88c841cab49ea20 (diff) | |
download | openshift-476bb76ea251a54ac1d4dc43622bda9831f499bc.tar.gz openshift-476bb76ea251a54ac1d4dc43622bda9831f499bc.tar.bz2 openshift-476bb76ea251a54ac1d4dc43622bda9831f499bc.tar.xz openshift-476bb76ea251a54ac1d4dc43622bda9831f499bc.zip |
Merge pull request #2341 from tbielawa/BZ1368296
BZ1368296 - quick install with the installer.cfg.yml in other directory failed
Diffstat (limited to 'utils/src/ooinstall/variants.py')
-rw-r--r-- | utils/src/ooinstall/variants.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/src/ooinstall/variants.py b/utils/src/ooinstall/variants.py index b32370cd5..ce4d772ee 100644 --- a/utils/src/ooinstall/variants.py +++ b/utils/src/ooinstall/variants.py @@ -11,6 +11,9 @@ to be specified by the user, and to point the generic variants to the latest version. """ +import logging +installer_log = logging.getLogger('installer') + class Version(object): def __init__(self, name, ansible_key): |