Skip to content
Snippets Groups Projects
Commit 6d269b1a authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Clarify when an external command emits for both files, otherwise it can look...

Clarify when an external command emits for both files, otherwise it can look like diffoscope is repeating itself when it is actually being run twice.
parent ca9d589c
No related branches found
No related tags found
No related merge requests found
......@@ -297,12 +297,12 @@ class Difference:
if command1 and command1.stderr:
difference.add_comment(
"stderr from `{}`:".format(command1.shell_cmdline())
"stderr from `{}` (a):".format(command1.shell_cmdline())
)
difference.add_comment(command1.stderr)
if command2 and command2.stderr:
difference.add_comment(
"stderr from `{}`:".format(command2.shell_cmdline())
"stderr from `{}` (b):".format(command2.shell_cmdline())
)
difference.add_comment(command2.stderr)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment