summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author?ric Araujo <merwok@netwok.org>2011-01-21 21:37:47 +0100
committer?ric Araujo <merwok@netwok.org>2011-01-21 21:37:47 +0100
commit64c87d8a3aef717a8dd722da6dcd11e1f0c4ced1 (patch)
tree4427ebc55f803653c2cdb7633ae09f15ca422179
parenta937df10b8d852b5273300f8fb5c8ccbce7b9ded (diff)
downloaddisutils2-64c87d8a3aef717a8dd722da6dcd11e1f0c4ced1.tar.gz
Print a space after multi-line prompt
-rw-r--r--distutils2/mkcfg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/distutils2/mkcfg.py b/distutils2/mkcfg.py
index 5689ad5..4b1628e 100644
--- a/distutils2/mkcfg.py
+++ b/distutils2/mkcfg.py
@@ -106,7 +106,7 @@ def ask(question, default=None, helptext=None, required=True,
if default and len(question) + len(default) > 70:
prompt = '%s\n [%s]: ' % (question, default)
if lengthy or multiline:
- prompt += '\n >'
+ prompt += '\n > '
if not helptext:
helptext = 'No additional help available.'