mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-16 09:55:26 -07:00
typo fix for variable ANSIBLE_ETCD_VERSION (#17373)
This commit is contained in:
parent
02d9f14b8b
commit
d56b0aa813
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ if os.getenv('ANSIBLE_ETCD_URL') is not None:
|
||||||
|
|
||||||
ANSIBLE_ETCD_VERSION = 'v1'
|
ANSIBLE_ETCD_VERSION = 'v1'
|
||||||
if os.getenv('ANSIBLE_ETCD_VERSION') is not None:
|
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:
|
class Etcd:
|
||||||
def __init__(self, url=ANSIBLE_ETCD_URL, version=ANSIBLE_ETCD_VERSION,
|
def __init__(self, url=ANSIBLE_ETCD_URL, version=ANSIBLE_ETCD_VERSION,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue