mirror of
https://github.com/JonathanHerrewijnen/calibre-web.git
synced 2024-11-10 21:24:15 +00:00
log message on not found author
This commit is contained in:
parent
547ea93dc9
commit
3a0dacc6a6
@ -788,8 +788,9 @@ class CalibreDB():
|
||||
error = False
|
||||
for auth in sort_authors:
|
||||
results = self.session.query(Authors).filter(Authors.sort == auth.lstrip().strip()).all()
|
||||
# ToDo: How to handle not found authorname
|
||||
# ToDo: How to handle not found author name
|
||||
if not len(results):
|
||||
log.error("Author {} not found to display name in right order".format(auth))
|
||||
error = True
|
||||
break
|
||||
for r in results:
|
||||
|
Loading…
Reference in New Issue
Block a user