Fix for convert + email task with gdrive

pull/1539/merge
Ozzieisaacs 4 years ago
parent 2d98285545
commit 0d64692c84

@ -260,7 +260,7 @@ def delete_book(book_id, book_format, jsonResponse):
filter(db.Data.format == book_format).delete()
calibre_db.session.commit()
except Exception as e:
log.debug(e)
log.exception(e)
calibre_db.session.rollback()
else:
# book not found

@ -52,7 +52,6 @@ class TaskConvert(CalibreTask):
return self._handleError(str(e))
def _convert_ebook_format(self):
error_message = None
local_session = db.Session()
file_path = self.file_path
book_id = self.bookid
@ -68,7 +67,7 @@ class TaskConvert(CalibreTask):
self.results['path'] = file_path
self.results['title'] = cur_book.title
self._handleSuccess()
return file_path + format_new_ext
return os.path.basename(file_path + format_new_ext)
else:
log.info("Book id %d - target format of %s does not exist. Moving forward with convert.",
book_id,
@ -105,7 +104,7 @@ class TaskConvert(CalibreTask):
if config.config_use_google_drive:
os.remove(file_path + format_old_ext)
self._handleSuccess()
return file_path + format_new_ext
return os.path.basename(file_path + format_new_ext)
else:
error_message = _('%(format)s format not found on disk', format=format_new_ext.upper())
log.info("ebook converter failed with error while converting book")

Loading…
Cancel
Save