Skip to content

Commit d26fbb5

Browse files
committed
dont require uppercase N
1 parent 01aec70 commit d26fbb5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

make-html.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414

1515
def main():
1616
if os.path.exists('html'):
17-
if input("html exists. Do you want to remove it [Y/n] ") == 'N':
17+
if input("html exists. Do you want "
18+
"to remove it? [Y/n] ").upper() == 'N':
1819
print("Interrupt.")
1920
return
2021
if os.path.isdir('html'):

0 commit comments

Comments
 (0)