Skip to content

Commit 8703949

Browse files
committed
Refine error report when validating own ABOUT
Signed-off-by: Philippe Ombredanne <[email protected]>
1 parent 0cba7b8 commit 8703949

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_validate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ def check_about(path):
4747
try:
4848
subprocess.check_output(args=args, cwd=root_dir)
4949
except subprocess.CalledProcessError as cpe:
50-
print('failed to validate ABOUT files:\n' + cpe.output)
51-
raise Exception(repr(cpe.output))
50+
print('Failed to validate ABOUT files:\n' + cpe.output)
51+
raise Exception(cpe.output)
5252

5353

5454
def test_about_thirdparty():

0 commit comments

Comments
 (0)