fixed super invocation

This commit is contained in:
Sebi Calbaza 2015-11-15 13:48:40 +02:00
parent f1db99caa7
commit 1f052d5ce6

View file

@ -75,7 +75,7 @@ class LookupModule(LookupBase):
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'
if os.getenv('ANSIBLE_CONSUL_URL') is not None: