mirror of
https://github.com/samba-team/samba.git
synced 2025-01-08 21:18:16 +03:00
waflib: fix syntax error in string format
Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Reviewed-by: Noel Power <noel.power@suse.com>
This commit is contained in:
parent
d4e0660354
commit
aafe6bf96a
@ -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
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user