Only rstrip log lines as to not lose indentation
This commit is contained in:
parent
e6d914df7c
commit
ed3774ad14
|
@ -40,7 +40,7 @@ def run(image: str = None, command: str = None, volumes: dict = None,
|
||||||
except StopIteration:
|
except StopIteration:
|
||||||
break
|
break
|
||||||
if line:
|
if line:
|
||||||
yield line.strip()
|
yield line.rstrip()
|
||||||
else:
|
else:
|
||||||
break
|
break
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue