1
1
mirror of https://github.com/sshuttle/sshuttle.git synced 2025-04-23 18:58:59 +02:00

Fix missing string formatting argument

This commit is contained in:
Brian May 2018-10-07 11:29:02 +11:00
parent 6dc368bde8
commit 97ed2030f3

View File

@ -82,7 +82,7 @@ def main():
if return_code == 0:
log('Normal exit code, exiting...')
else:
log('Abnormal exit code detected, failing...' % return_code)
log('Abnormal exit code %d detected, failing...' % return_code)
return return_code
except Fatal as e: