mirror of
https://github.com/docker/compose.git
synced 2025-07-28 16:14:06 +02:00
Fix byte/str typing error
Signed-off-by: Sander Maijers <S.N.Maijers@gmail.com>
This commit is contained in:
parent
e502417df2
commit
61324ef308
@ -49,7 +49,7 @@ def input(prompt):
|
|||||||
"""
|
"""
|
||||||
sys.stdout.write(prompt)
|
sys.stdout.write(prompt)
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
return sys.stdin.readline().rstrip(b'\n')
|
return sys.stdin.readline().rstrip('\n')
|
||||||
|
|
||||||
|
|
||||||
def call_silently(*args, **kwargs):
|
def call_silently(*args, **kwargs):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user