Skip to content

Commit

Permalink
Bring back changes, they were not the issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
matpompili committed Dec 26, 2024
1 parent ce873d3 commit 00b3ffe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/connection/aws_ssm.py
Original file line number Diff line number Diff line change
Expand Up @@ -749,8 +749,8 @@ def _post_process(self, stdout, mark_begin):
stdout = stdout[:stdout.rfind(mark_begin)] # fmt: skip

# If the return code contains #CLIXML (like a progress bar) remove it
# clixml_filter = re.compile(r"#<\sCLIXML\s<Objs.*</Objs>")
# stdout = clixml_filter.sub("", stdout)
clixml_filter = re.compile(r"#<\sCLIXML\s<Objs.*</Objs>")
stdout = clixml_filter.sub("", stdout)

# If it looks like JSON remove any newlines
if stdout.startswith("{"):
Expand Down

0 comments on commit 00b3ffe

Please sign in to comment.