Explorar el Código

Fixed error when using startswith on non-ascii string

Signed-off-by: Sebastien Mamessier <[email protected]>
Sebastien Mamessier hace 6 años
padre
commit
a3a23bf949
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      compose/service.py

+ 1 - 1
compose/service.py

@@ -1806,7 +1806,7 @@ class _CLIBuilder(object):
                 line = p.stdout.readline()
                 if not line:
                     break
-                if line.startswith(magic_word):
+                if line.startswith(str(magic_word)):
                     appear = True
                 yield json.dumps({"stream": line})