mirror of https://github.com/docker/docs.git
Merge pull request #3577 from sanmai-NL/3576-byte_str_fix
Fix byte/str typing error
This commit is contained in:
commit
2123906586
|
@ -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