Skip to content

Commit

Permalink
Merge pull request docker#3577 from sanmai-NL/3576-byte_str_fix
Browse files Browse the repository at this point in the history
Fix byte/str typing error
  • Loading branch information
aanand authored Jun 14, 2016
2 parents 59e96fe + 61324ef commit 2123906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compose/cli/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 2123906

Please sign in to comment.