From d56b0aa813a9595978ffb38837530dda5fa9c90b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Gatien?= Date: Mon, 5 Sep 2016 23:00:56 -0400 Subject: [PATCH] typo fix for variable ANSIBLE_ETCD_VERSION (#17373) --- lib/ansible/plugins/lookup/etcd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/plugins/lookup/etcd.py b/lib/ansible/plugins/lookup/etcd.py index 190b214ab1..25a71aa2ac 100644 --- a/lib/ansible/plugins/lookup/etcd.py +++ b/lib/ansible/plugins/lookup/etcd.py @@ -34,7 +34,7 @@ if os.getenv('ANSIBLE_ETCD_URL') is not None: ANSIBLE_ETCD_VERSION = 'v1' if os.getenv('ANSIBLE_ETCD_VERSION') is not None: - ANSIBLE_ETCD_URL = os.environ['ANSIBLE_ETCD_VERSION'] + ANSIBLE_ETCD_VERSION = os.environ['ANSIBLE_ETCD_VERSION'] class Etcd: def __init__(self, url=ANSIBLE_ETCD_URL, version=ANSIBLE_ETCD_VERSION,