Added a test for ignoring subdirectories

This commit is contained in:
Rayan 2021-04-14 19:57:02 -04:00
commit 85853d93ef

View file

@ -3,6 +3,9 @@
import argparse
import locale
import os
import re
import smtplib
import getpass
from jinja2 import Environment, FileSystemLoader
@ -232,6 +235,8 @@ needed by Pelican.
CONF['timezone'] = ask_timezone('What is your time zone?',
CONF['timezone'], _TZ_URL)
#----------------------------------------------------------
automation = ask('Do you want to generate a tasks.py/Makefile '
'to automate generation and publishing?', bool, True)