Merge pull request #3577 from sanmai-NL/3576-byte_str_fix

Fix byte/str typing error
This commit is contained in:
Aanand Prasad 2016-06-14 01:58:27 +01:00 committed by GitHub
commit 2123906586

View File

@ -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):