mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 11:10:21 -07:00
Possible fix for the first newline and triple newline problems
This commit is contained in:
parent
43c1a97447
commit
378dc561cb
1 changed files with 2 additions and 3 deletions
|
@ -211,7 +211,7 @@ def split_args(args):
|
||||||
params.append(token)
|
params.append(token)
|
||||||
appended = True
|
appended = True
|
||||||
elif print_depth or block_depth or comment_depth or inside_quotes or was_inside_quotes:
|
elif print_depth or block_depth or comment_depth or inside_quotes or was_inside_quotes:
|
||||||
if idx == 0 and not inside_quotes and was_inside_quotes:
|
if idx == 0 and was_inside_quotes:
|
||||||
params[-1] = "%s%s" % (params[-1], token)
|
params[-1] = "%s%s" % (params[-1], token)
|
||||||
elif len(tokens) > 1:
|
elif len(tokens) > 1:
|
||||||
spacer = ''
|
spacer = ''
|
||||||
|
@ -251,7 +251,6 @@ def split_args(args):
|
||||||
# one item (meaning we split on newlines), add a newline back here
|
# one item (meaning we split on newlines), add a newline back here
|
||||||
# to preserve the original structure
|
# to preserve the original structure
|
||||||
if len(items) > 1 and itemidx != len(items) - 1 and not line_continuation:
|
if len(items) > 1 and itemidx != len(items) - 1 and not line_continuation:
|
||||||
if not params[-1].endswith('\n'):
|
|
||||||
params[-1] += '\n'
|
params[-1] += '\n'
|
||||||
|
|
||||||
# always clear the line continuation flag
|
# always clear the line continuation flag
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue