mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-03 03:42:45 +00:00
new match(block). It previously only occurred if a new match occurred, but suggest it should occur when an end of a block match is found.
This commit is contained in:
committed by
Ganesh Nalawade
parent
747bea9a27
commit
7553c42e09
@@ -112,8 +112,6 @@ def parse_cli(output, tmpl):
|
||||
match_end = end_block.match(line)
|
||||
|
||||
if match_start:
|
||||
if lines:
|
||||
blocks.append('\n'.join(lines))
|
||||
lines = list()
|
||||
lines.append(line)
|
||||
block_started = True
|
||||
@@ -121,6 +119,7 @@ def parse_cli(output, tmpl):
|
||||
elif match_end:
|
||||
if lines:
|
||||
lines.append(line)
|
||||
blocks.append('\n'.join(lines))
|
||||
block_started = False
|
||||
|
||||
elif block_started:
|
||||
|
||||
Reference in New Issue
Block a user