diff options
author | Andrew Butcher <abutcher@afrolegs.com> | 2016-10-20 13:04:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-20 13:04:59 -0400 |
commit | 556e8d290892c212f591b0ef06ea35dd47020783 (patch) | |
tree | fed3bce57bcd86637d2c2a5b74c9bd719caa242e /roles/openshift_facts | |
parent | 1e943532d3f2ba47cbc028ee05eab683e5ffbc81 (diff) | |
parent | 5bfa7e8da79685e09097d266d6cf453729e704dc (diff) | |
download | openshift-556e8d290892c212f591b0ef06ea35dd47020783.tar.gz openshift-556e8d290892c212f591b0ef06ea35dd47020783.tar.bz2 openshift-556e8d290892c212f591b0ef06ea35dd47020783.tar.xz openshift-556e8d290892c212f591b0ef06ea35dd47020783.zip |
Merge pull request #2623 from rhcarvalho/typos
Fix typos
Diffstat (limited to 'roles/openshift_facts')
-rwxr-xr-x | roles/openshift_facts/library/openshift_facts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_facts/library/openshift_facts.py b/roles/openshift_facts/library/openshift_facts.py index cb642e12e..f281b1303 100755 --- a/roles/openshift_facts/library/openshift_facts.py +++ b/roles/openshift_facts/library/openshift_facts.py @@ -59,7 +59,7 @@ def migrate_docker_facts(facts): facts['docker']['hosted_registry_network'] = facts['node'].pop('portal_net') # log_options was originally meant to be a comma separated string, but - # we now prefer an actual list, with backward compatability: + # we now prefer an actual list, with backward compatibility: if 'log_options' in facts['docker'] and \ isinstance(facts['docker']['log_options'], basestring): facts['docker']['log_options'] = facts['docker']['log_options'].split(",") |