mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-07-04 09:38:52 +00:00
Fix logic in process_common_errors for unbalanced quotes
This commit is contained in:
parent
67517e96d3
commit
2aaecc5afa
2 changed files with 2 additions and 3 deletions
|
|
@ -424,7 +424,7 @@ Or:
|
|||
match = True
|
||||
elif middle.startswith('"') and not middle.endswith('"'):
|
||||
match = True
|
||||
if len(middle) > 0 and middle[0] in [ '"', "'" ] and middle[-1] in [ '"', "'" ] and probline.count("'") > 2 or probline.count("'") > 2:
|
||||
if len(middle) > 0 and middle[0] in [ '"', "'" ] and middle[-1] in [ '"', "'" ] and probline.count("'") > 2 or probline.count('"') > 2:
|
||||
unbalanced = True
|
||||
if match:
|
||||
msg = msg + """
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue