Explorar o código

Fixed error when using startswith on non-ascii string

Signed-off-by: Sebastien Mamessier <[email protected]>
Sebastien Mamessier %!s(int64=6) %!d(string=hai) anos
pai
achega
a3a23bf949
Modificáronse 1 ficheiros con 1 adicións e 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})