From 34cadee48c758fdcb6c2a5d00b6f2a035ac167a2 Mon Sep 17 00:00:00 2001 From: Thomas Phillips Date: Tue, 7 Nov 2023 23:05:44 +1300 Subject: [PATCH] Add files into missing messages --- tools/reccmp/reccmp.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/reccmp/reccmp.py b/tools/reccmp/reccmp.py index a2e7b0a6..9beb2f92 100755 --- a/tools/reccmp/reccmp.py +++ b/tools/reccmp/reccmp.py @@ -50,19 +50,19 @@ original = args.original if not os.path.isfile(original): - parser.error('Original binary does not exist') + parser.error(f'Original binary {original} does not exist') recomp = args.recompiled if not os.path.isfile(recomp): - parser.error('Recompiled binary does not exist') + parser.error(f'Recompiled binary {recomp} does not exist') syms = args.pdb if not os.path.isfile(syms): - parser.error('Symbols PDB does not exist') + parser.error(f'Symbols PDB {syms} does not exist') source = args.decomp_dir if not os.path.isdir(source): - parser.error('Source directory does not exist') + parser.error(f'Source directory {source} does not exist') svg = args.svg