aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--wa/utils/log.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wa/utils/log.py b/wa/utils/log.py
index 5b4e18e0..e16afd84 100644
--- a/wa/utils/log.py
+++ b/wa/utils/log.py
@@ -200,7 +200,7 @@ def log_error(e, logger, critical=False):
log_func(tb)
command = e.cmd
if e.args:
- command = '{} {}'.format(command, ' '.join(e.args))
+ command = '{} {}'.format(command, ' '.join(map(str, e.args)))
message = 'Command \'{}\' returned non-zero exit status {}\nOUTPUT:\n{}\n'
log_func(message.format(command, e.returncode, e.output))
elif isinstance(e, SyntaxError):