From 97ed2030f340113908fa218f90964767415c55ab Mon Sep 17 00:00:00 2001 From: Brian May Date: Sun, 7 Oct 2018 11:29:02 +1100 Subject: Fix missing string formatting argument --- sshuttle/cmdline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sshuttle/cmdline.py b/sshuttle/cmdline.py index 907e7cf..d952288 100644 --- a/sshuttle/cmdline.py +++ b/sshuttle/cmdline.py @@ -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: -- cgit v1.2.3