fix a comment typo in ui/__init__.py

This commit is contained in:
Johnny Robeson 2016-06-23 01:29:46 -04:00
parent 2836877c35
commit c7a4d261e2

View file

@ -199,7 +199,7 @@ def input_(prompt=None):
input cursor.
"""
# raw_input incorrectly sends prompts to stderr, not stdout, so we
# use print() explicitly to display prompts.
# use print_() explicitly to display prompts.
# http://bugs.python.org/issue1927
if prompt:
print_(prompt, end=' ')