Don't iterate over articles twice
This commit is contained in:
@@ -98,7 +98,7 @@ def populate_files_and_articles(article_generator):
|
|||||||
|
|
||||||
base_path = Path(article_generator.path)
|
base_path = Path(article_generator.path)
|
||||||
if not ARTICLES:
|
if not ARTICLES:
|
||||||
articles = chain(base_path.glob('**/*.md'), base_path.glob('**/*.md'))
|
articles = base_path.glob('**/*.md')
|
||||||
for article in articles:
|
for article in articles:
|
||||||
full_path, filename_w_ext = os.path.split(article)
|
full_path, filename_w_ext = os.path.split(article)
|
||||||
filename, ext = os.path.splitext(filename_w_ext)
|
filename, ext = os.path.splitext(filename_w_ext)
|
||||||
|
Reference in New Issue
Block a user