1
0
Fork 0
forked from github/pelican

Merge pull request #2897 from MinchinWeb/rich-logging

Rich logging
This commit is contained in:
Justin Mayer 2021-09-29 12:56:48 +02:00 committed by GitHub
commit 7ccaa9a6b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 49 additions and 181 deletions

View file

@ -827,7 +827,7 @@ class FileSystemWatcher:
if result.get('content') is None:
reader_descs = sorted(
{
'%s (%s)' % (type(r).__name__, ', '.join(r.file_extensions))
' | %s (%s)' % (type(r).__name__, ', '.join(r.file_extensions))
for r in self.reader_class(self.settings).readers.values()
if r.enabled
}