diff options
| 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 |
| commit | 64c87d8a3aef717a8dd722da6dcd11e1f0c4ced1 (patch) | |
| tree | 4427ebc55f803653c2cdb7633ae09f15ca422179 | |
| parent | a937df10b8d852b5273300f8fb5c8ccbce7b9ded (diff) | |
| download | disutils2-64c87d8a3aef717a8dd722da6dcd11e1f0c4ced1.tar.gz | |
Print a space after multi-line prompt
| -rw-r--r-- | distutils2/mkcfg.py | 2 |
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.' |
