diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-01-31 02:06:19 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-01-31 02:06:19 +0900 |
commit | 7482b6b2a4a17115a3cd430ed35443f83bf07ffe (patch) | |
tree | bb16f53d1405414bf2f3cdd72903f38a34849011 /sphinx/quickstart.py | |
parent | 678cc3d50363e927ab904b61e9d7eaee04f4e965 (diff) | |
download | sphinx-git-7482b6b2a4a17115a3cd430ed35443f83bf07ffe.tar.gz |
Refactor quickstart
Diffstat (limited to 'sphinx/quickstart.py')
-rw-r--r-- | sphinx/quickstart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py index 0bc6bd9f7..a4d983235 100644 --- a/sphinx/quickstart.py +++ b/sphinx/quickstart.py @@ -72,7 +72,7 @@ def mkdir_p(dir): # function to get input from terminal -- overridden by the test suite def term_input(prompt): - sys.stdout.write(prompt) + print(prompt, end='') return input('') |