Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions demisto_sdk/commands/run_cmd/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,9 @@ def _run_query(self, playground_id: str):
if entry.contents:
logger.info("<yellow>## Readable Output</yellow>")
if entry.type == self.ERROR_ENTRY_TYPE:
logger.info("{}", f"<red>{entry.contents}</red>\n") # noqa: PLE1205
logger.info("{}", f"<red>{entry.contents.replace('<', '\\<')}</red>\n") # noqa: PLE1205
else:
logger.info(f"{entry.contents}\n")
logger.info(f"{entry.contents.replace('<', '\\<')}\n")

# and entries with `file_id`s defined, that is the fileID of the debug log file
if entry.type == self.DEBUG_FILE_ENTRY_TYPE:
Expand Down