Skip to content

Commit 6abe401

Browse files
authored
Fix packer compare message (#857)
1 parent 24930a8 commit 6abe401

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

toolchain/mfc/packer/packer.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@ def packer():
4141
if err is not None:
4242
raise MFCException(err)
4343
elif ARG("packer") == "compare":
44-
cons.print(f"Comparing [magenta]{os.path.relpath(ARG('input1'))}[/magenta] to [magenta]{os.path.relpath(ARG('input1'))}[/magenta]:")
44+
cons.print(
45+
f"Comparing [magenta]{os.path.relpath(ARG('input1'))}[/magenta] to "
46+
f"[magenta]{os.path.relpath(ARG('input2'))}[/magenta]:"
47+
)
4548

4649
cons.indent()
4750
cons.print()

0 commit comments

Comments
 (0)