Browse Source

Typo in confirmation message

pull/108/head
Oliverpool 9 years ago
parent
commit
3ae9a20d52
  1. 2
      patacrep/songs/convert/__main__.py

2
patacrep/songs/convert/__main__.py

@ -17,7 +17,7 @@ def __usage():
def yesno(prompt):
while True:
answer = input("{} [yn](folllow with * to remember) ".format(prompt)).strip().lower()
answer = input("{} [yn](append * to remember) ".format(prompt)).strip().lower()
remember = (answer[-1] == "*")
if remember:
answer = answer[0:-1]

Loading…
Cancel
Save