diff options
-rwxr-xr-x | git-bz | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -941,9 +941,10 @@ def prompt(message): def prompt_multi(message, options): while True: line = input(f"{message} ") - opt = line[0].lower() - if opt in options: - return opt + if line: + opt = line[0].lower() + if opt in options: + return opt def die(message): |