mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Fixes #4402 wrong order for isinstance parameters in dnstxt.py
This commit is contained in:
@@ -44,7 +44,7 @@ class LookupModule(object):
|
||||
|
||||
terms = utils.listify_lookup_plugin_terms(terms, self.basedir, inject)
|
||||
|
||||
if isinstance(basestring, terms):
|
||||
if isinstance(terms, basestring):
|
||||
terms = [ terms ]
|
||||
|
||||
ret = []
|
||||
|
||||
Reference in New Issue
Block a user