mirror of https://github.com/docker/compose.git
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.flush()
|
||||
return sys.stdin.readline().rstrip(b'\n')
|
||||
return sys.stdin.readline().rstrip('\n')
|
||||
|
||||
|
||||
def call_silently(*args, **kwargs):
|
||||
|
|
Loading…
Reference in New Issue