mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
sort the output of set to avoid random orders.
This commit is contained in:
parent
2e6d818dfd
commit
4466fcbf25
1 changed files with 2 additions and 2 deletions
|
|
@ -473,7 +473,7 @@ def main():
|
|||
if r.enabled])
|
||||
|
||||
logger.warning('No valid files found in content for the active readers:\n' +
|
||||
'\n'.join(reader_descs))
|
||||
'\n'.join(sorted(reader_descs)))
|
||||
|
||||
if modified['theme'] is None:
|
||||
logger.warning('Empty theme folder. Using `basic` '
|
||||
|
|
@ -502,7 +502,7 @@ def main():
|
|||
if r.enabled])
|
||||
|
||||
logger.warning('No valid files found in content for the active readers:\n' +
|
||||
'\n'.join(reader_descs))
|
||||
'\n'.join(sorted(reader_descs)))
|
||||
|
||||
if next(watchers['theme']) is None:
|
||||
logger.warning('Empty theme folder. Using `basic` theme.')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue