webgen v4.0.54 bugfixes

This commit is contained in:
Wolfgang Nowak 2022-07-27 13:33:57 +02:00
parent df387d741e
commit 9d687a6fe2

View file

@ -65,7 +65,7 @@ def edit(headline):
subprocess.call([editor, headline]) subprocess.call([editor, headline])
if dospellcheck: if dospellcheck:
print(yellow) print(yellow)
if input("You like to spellcheck it [y/N]?") == "y": if input("You like to spellcheck it first [y/N]?") == "y":
subprocess.call([spellcheck, spellcheckparam, headline]) subprocess.call([spellcheck, spellcheckparam, headline])
print(green) print(green)
return headline return headline