mirror of
https://github.com/janeczku/calibre-web.git
synced 2025-02-09 13:47:02 +02:00
Debug output for lcase
This commit is contained in:
parent
0c40e40dc3
commit
9fc02f67c2
@ -785,4 +785,7 @@ def get_download_link(book_id, book_format):
|
||||
############### Database Helper functions
|
||||
|
||||
def lcase(s):
|
||||
return unidecode.unidecode(s.lower()) if use_unidecode else s.lower()
|
||||
try:
|
||||
return unidecode.unidecode(s.lower())
|
||||
except Exception as e:
|
||||
log.exception(e)
|
||||
|
Loading…
x
Reference in New Issue
Block a user