Skip to content

Commit

Permalink
Merge pull request ansible#13174 from sebi-hgdata/sebi/consul_kv_issue
Browse files Browse the repository at this point in the history
Consul kv lookup super invocation fix
  • Loading branch information
bcoca committed Nov 15, 2015
2 parents 83f7942 + 1f052d5 commit 2083a2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/plugins/lookup/consul_kv.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 2083a2d

Please sign in to comment.