From f0f69623f6852badb7b912064de539371da6e2f1 Mon Sep 17 00:00:00 2001 From: Devan Goodwin Date: Thu, 16 Jun 2016 14:58:15 -0300 Subject: Fix typo in facts. --- roles/openshift_facts/library/openshift_facts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'roles/openshift_facts/library/openshift_facts.py') 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: -- cgit v1.2.3