Replace container output command prefix ">>>"

In the junitxml this prefix would look ugly ("&gt&gt&gt") because it has
to escape any non-xml tags.
This commit is contained in:
deeplow 2023-07-20 14:26:23 +01:00
parent 48b2e7bc3c
commit eb16285790
No known key found for this signature in database
GPG key ID: 577982871529A52A

View file

@ -79,7 +79,7 @@ class DangerzoneConverter:
# Log command to debug log so we can trace back which errors
# are from each command
self.captured_output += f">>> {' '.join(args)}\n".encode()
self.captured_output += f"[COMMAND] {' '.join(args)}\n".encode()
assert proc.stdout is not None
assert proc.stderr is not None