diff options
Diffstat (limited to 'scripts/combo-layer')
-rwxr-xr-x | scripts/combo-layer | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/combo-layer b/scripts/combo-layer index 36a8f5fa1e..eaa7f5adb8 100755 --- a/scripts/combo-layer +++ b/scripts/combo-layer | |||
@@ -198,7 +198,7 @@ def runcmd(cmd,destdir=None,printerr=True,out=None,env=None): | |||
198 | raise e | 198 | raise e |
199 | 199 | ||
200 | err.seek(0) | 200 | err.seek(0) |
201 | output = err.read() | 201 | output = err.read().decode('utf-8') |
202 | logger.debug("output: %s" % output.replace(chr(0), '\\0')) | 202 | logger.debug("output: %s" % output.replace(chr(0), '\\0')) |
203 | return output | 203 | return output |
204 | 204 | ||