fixed super invocation
This commit is contained in:
parent
f1db99caa7
commit
1f052d5ce6
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ class LookupModule(LookupBase):
|
||||||
|
|
||||||
def __init__(self, loader=None, templar=None, **kwargs):
|
def __init__(self, loader=None, templar=None, **kwargs):
|
||||||
|
|
||||||
super(LookupBase, self).__init__(loader, templar, **kwargs)
|
super(LookupModule, self).__init__(loader, templar, **kwargs)
|
||||||
|
|
||||||
self.agent_url = 'http://localhost:8500'
|
self.agent_url = 'http://localhost:8500'
|
||||||
if os.getenv('ANSIBLE_CONSUL_URL') is not None:
|
if os.getenv('ANSIBLE_CONSUL_URL') is not None:
|
||||||
|
|
Loading…
Reference in a new issue