forked from github/pelican
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):
|
||||
values = (values,)
|
||||
|
||||
discovered_generators.extend(
|
||||
[(generator, receiver.__module__) for generator in values]
|
||||
)
|
||||
discovered_generators.extend(
|
||||
[(generator, receiver.__module__) for generator in values]
|
||||
)
|
||||
|
||||
# StaticGenerator must run last, so it can identify files that
|
||||
# were skipped by the other generators, and so static files can
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue