scripts: Actually print filename of offending file

The error message printed by scripts/group-qemu-caps.py and
scripts/test-wrap-argv.py doesn't actually print the filename of the
offending file:

 Incorrect line wrapping in $file

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
This commit is contained in:
Peter Krempa 2021-01-12 19:32:00 +01:00
parent 037ea5d10c
commit b724b7d197
2 changed files with 4 additions and 4 deletions

View File

@ -78,8 +78,8 @@ def regroup_caps(check, filename, start_regex, end_regex,
stdin=subprocess.PIPE)
diff.communicate(input=new.encode('utf-8'))
print("Incorrect line wrapping in $file",
file=sys.stderr)
print("Incorrect line wrapping in '%s'" %
filename, file=sys.stderr)
print("Use group-qemu-caps.py to generate data files",
file=sys.stderr)
return False

View File

@ -137,8 +137,8 @@ def rewrap(filename, in_place, check):
stdin=subprocess.PIPE)
diff.communicate(input=new.encode('utf-8'))
print("Incorrect line wrapping in $file",
file=sys.stderr)
print("Incorrect line wrapping in '%s'" %
filename, file=sys.stderr)
print("Use test-wrap-argv.py to wrap test data files",
file=sys.stderr)
return False