Minor typo correction varibles -> variables

No impact as variable wasn't used.
(cherry picked from commit 403c142750)
This commit is contained in:
Nick Piper 2017-04-28 09:38:22 +01:00 committed by Brian Coca
parent 813497bbda
commit d68a911141

View file

@ -24,7 +24,7 @@ from ansible.plugins.lookup import LookupBase
class LookupModule(LookupBase):
def run(self, terms, varibles=None, **kwargs):
def run(self, terms, variables=None, **kwargs):
# Expect any type of Mapping, notably hostvars
if not isinstance(terms, collections.Mapping):