Debug output for lcase

This commit is contained in:
Ozzieisaacs 2019-09-27 15:30:39 +02:00
parent 0c40e40dc3
commit 9fc02f67c2
1 changed files with 4 additions and 1 deletions

View File

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