diff options
author | Devan Goodwin <dgoodwin@redhat.com> | 2016-06-16 14:58:15 -0300 |
---|---|---|
committer | Devan Goodwin <dgoodwin@redhat.com> | 2016-06-16 14:58:15 -0300 |
commit | f0f69623f6852badb7b912064de539371da6e2f1 (patch) | |
tree | 03c09d58cfd78d74ad2cb869bf816e8232e9e776 /roles/openshift_facts/library | |
parent | 78dd487871796a71c450a1a1daf78b079a3a1090 (diff) | |
download | openshift-f0f69623f6852badb7b912064de539371da6e2f1.tar.gz openshift-f0f69623f6852badb7b912064de539371da6e2f1.tar.bz2 openshift-f0f69623f6852badb7b912064de539371da6e2f1.tar.xz openshift-f0f69623f6852badb7b912064de539371da6e2f1.zip |
Fix typo in facts.
Diffstat (limited to 'roles/openshift_facts/library')
-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 a979639f8..6c31f0fa8 100755 --- a/roles/openshift_facts/library/openshift_facts.py +++ b/roles/openshift_facts/library/openshift_facts.py @@ -1159,7 +1159,7 @@ def get_containerized_node_openshift_version(facts): with open(node_env) as f: for line in f: - if line.startwith("IMAGE_VERSION="): + if line.startswith("IMAGE_VERSION="): tag = line[len("IMAGE_VERSION="):] # Remove leading "v" and any trailing release info, we just want # a version number here: |