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:
|
||||
break
|
||||
if line:
|
||||
yield line.strip()
|
||||
yield line.rstrip()
|
||||
else:
|
||||
break
|
||||
|
||||
|
|
Loading…
Reference in New Issue