1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #2700 from chamill/devel

Fix errors in lookup plugins.
This commit is contained in:
Michael DeHaan 2013-04-17 08:41:14 -07:00
commit 40b78f96de
5 changed files with 9 additions and 5 deletions

View file

@ -44,8 +44,8 @@ class LookupModule(object):
terms = utils.listify_lookup_plugin_terms(terms, self.basedir, inject) terms = utils.listify_lookup_plugin_terms(terms, self.basedir, inject)
if isinstance(basestring, terms):
terms = [ terms ]
ret = [] ret = []
for term in terms: for term in terms:

View file

@ -27,6 +27,9 @@ class LookupModule(object):
terms = utils.listify_lookup_plugin_terms(terms, self.basedir, inject) terms = utils.listify_lookup_plugin_terms(terms, self.basedir, inject)
if isinstance(basestring, terms):
terms = [ terms ]
ret = [] ret = []
for term in terms: for term in terms:
var = term.split()[0] var = term.split()[0]

View file

@ -26,7 +26,7 @@ class LookupModule(object):
def run(self, terms, inject=None, **kwargs): def run(self, terms, inject=None, **kwargs):
utils.listify_lookup_plugin_terms(terms, self.basedir, inject) terms = utils.listify_lookup_plugin_terms(terms, self.basedir, inject)
ret = [] ret = []

View file

@ -16,7 +16,7 @@
# along with Ansible. If not, see <http://www.gnu.org/licenses/>. # along with Ansible. If not, see <http://www.gnu.org/licenses/>.
from ansible.errors import AnsibleError from ansible.errors import AnsibleError
from ansible.utils import parse_kv import ansible.utils as utils
from re import compile as re_compile, IGNORECASE from re import compile as re_compile, IGNORECASE
# shortcut format # shortcut format
@ -181,7 +181,7 @@ class LookupModule(object):
try: try:
if not self.parse_simple_args(term): if not self.parse_simple_args(term):
self.parse_kv_args(parse_kv(term)) self.parse_kv_args(utils.parse_kv(term))
except Exception: except Exception:
raise AnsibleError( raise AnsibleError(
"unknown error parsing with_sequence arguments: %r" "unknown error parsing with_sequence arguments: %r"

View file

@ -16,6 +16,7 @@
# along with Ansible. If not, see <http://www.gnu.org/licenses/>. # along with Ansible. If not, see <http://www.gnu.org/licenses/>.
from ansible.utils import template from ansible.utils import template
import ansible.utils as utils
class LookupModule(object): class LookupModule(object):