Commit a5b18823 authored by bodybybuddha's avatar bodybybuddha

Merge branch 'ebookconvert-any' of https://github.com/bodybybuddha/calibre-web...

Merge branch 'ebookconvert-any' of https://github.com/bodybybuddha/calibre-web into ebookconvert-any
parents a2dfdaad fc78d1ee
......@@ -3186,7 +3186,10 @@ def edit_book(book_id):
#Determine what formats don't already exist
allowed_conversion_formats = ALLOWED_EXTENSIONS
for file in book.data:
allowed_conversion_formats.remove(file.format.lower())
try:
allowed_conversion_formats.remove(file.format.lower())
except Exception:
app.logger.warning(file.formate.lower() + ' already removed from list.')
app.logger.debug(allowed_conversion_formats)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment