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

fixed error reporting on splitter

This commit is contained in:
Brian Coca 2015-10-01 19:03:04 -04:00
parent de2f62bd9e
commit 3705d54485

View file

@ -22,6 +22,8 @@ __metaclass__ = type
import re
import codecs
from ansible.errors import AnsibleError
# Decode escapes adapted from rspeer's answer here:
# http://stackoverflow.com/questions/4020539/process-escape-sequences-in-a-string-in-python
_HEXCHAR = '[a-fA-F0-9]'
@ -57,7 +59,7 @@ def parse_kv(args, check_raw=False):
vargs = split_args(args)
except ValueError as ve:
if 'no closing quotation' in str(ve).lower():
raise errors.AnsibleError("error parsing argument string, try quoting the entire line.")
raise AnsibleError("error parsing argument string, try quoting the entire line.")
else:
raise