mirror of
https://github.com/containers/podman-compose.git
synced 2024-11-22 16:03:16 +01:00
Fix ambiguous variable name
Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
This commit is contained in:
parent
a6e0092627
commit
91052cb2d9
@ -1175,9 +1175,9 @@ class Podman:
|
|||||||
|
|
||||||
async def format_out(stdout):
|
async def format_out(stdout):
|
||||||
while True:
|
while True:
|
||||||
l = await stdout.readline()
|
line = await stdout.readline()
|
||||||
if l:
|
if line:
|
||||||
print(log_formatter, l.decode('utf-8'), end='')
|
print(log_formatter, line.decode('utf-8'), end='')
|
||||||
if stdout.at_eof():
|
if stdout.at_eof():
|
||||||
break
|
break
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user