sort the output of set to avoid random orders.

This commit is contained in:
Adrin Jalali 2018-03-25 18:57:14 +02:00 committed by GitHub
commit 4466fcbf25
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.')