From: Douglas Bagnall Date: Sat, 27 Oct 2018 21:33:26 +0000 (+1300) Subject: waflib: fix syntax error in string format X-Git-Tag: tdb-1.3.17~1016 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aafe6bf96ac9e14b5546c31b51dcfd010b9a5717;p=thirdparty%2Fsamba.git waflib: fix syntax error in string format Signed-off-by: Douglas Bagnall Reviewed-by: Noel Power --- diff --git a/buildtools/wafsamba/samba_utils.py b/buildtools/wafsamba/samba_utils.py index 86d1e24a115..58a0b71796c 100644 --- a/buildtools/wafsamba/samba_utils.py +++ b/buildtools/wafsamba/samba_utils.py @@ -328,7 +328,7 @@ def RUN_COMMAND(cmd, return os.WEXITSTATUS(status) if os.WIFSIGNALED(status): return - os.WTERMSIG(status) - Logs.error("Unknown exit reason %d for command: %s" (status, cmd)) + Logs.error("Unknown exit reason %d for command: %s" % (status, cmd)) return -1