[Diff] Fix typo in log message

This commit is contained in:
Matthijs Kooijman 2023-05-17 13:11:49 +02:00
parent f3c1865d00
commit c9b2e7cdc5
1 changed files with 1 additions and 1 deletions

View File

@ -478,7 +478,7 @@ class DiffOptions(BaseOptions):
run_command(cmd, just_raise=True)
except CalledProcessError as e:
if e.returncode == 10:
logger.error('Diff above the thresold')
logger.error('Diff above the threshold')
exit(DIFF_TOO_BIG)
logger.error('Running {} returned {}'.format(e.cmd, e.returncode))
if e.stdout: