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:
parent
de2f62bd9e
commit
3705d54485
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue