mirror of
https://github.com/certbot/certbot.git
synced 2026-04-01 15:16:02 -04:00
Add trailing space to prompt.
This commit is contained in:
parent
1871f0d1b9
commit
2ebd8e9763
1 changed files with 2 additions and 1 deletions
|
|
@ -176,7 +176,8 @@ class FileDisplay(object):
|
|||
if self._return_default(message, default, cli_flag, force_interactive):
|
||||
return OK, default
|
||||
|
||||
message = _wrap_lines("%s (Enter 'c' to cancel): " % message)
|
||||
# Trailing space must be added outside of _wrap_lines to be preserved
|
||||
message = _wrap_lines("%s (Enter 'c' to cancel):" % message) + " "
|
||||
ans = input_with_timeout(message)
|
||||
|
||||
if ans == "c" or ans == "C":
|
||||
|
|
|
|||
Loading…
Reference in a new issue