mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Fix code indented incorrectly in generators logging (#2823)
This commit is contained in:
parent
246da3b4d8
commit
9435a6c045
2 changed files with 6 additions and 3 deletions
3
RELEASE.md
Normal file
3
RELEASE.md
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
Release type: patch
|
||||||
|
|
||||||
|
Fix a mistake made in PR #2821
|
||||||
|
|
@ -178,9 +178,9 @@ class Pelican:
|
||||||
if not isinstance(values, Iterable):
|
if not isinstance(values, Iterable):
|
||||||
values = (values,)
|
values = (values,)
|
||||||
|
|
||||||
discovered_generators.extend(
|
discovered_generators.extend(
|
||||||
[(generator, receiver.__module__) for generator in values]
|
[(generator, receiver.__module__) for generator in values]
|
||||||
)
|
)
|
||||||
|
|
||||||
# StaticGenerator must run last, so it can identify files that
|
# StaticGenerator must run last, so it can identify files that
|
||||||
# were skipped by the other generators, and so static files can
|
# were skipped by the other generators, and so static files can
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue