This commit is contained in:
th3r00t
2021-07-24 14:04:16 -04:00
parent d263c14040
commit 0b6903aaa3

View File

@@ -285,7 +285,7 @@ class Catalogue:
cover = book_zip.open(list(filter(self.cover_regx.search, book["files"]))[0]) cover = book_zip.open(list(filter(self.cover_regx.search, book["files"]))[0])
cover = book_zip.read(cover.name) cover = book_zip.read(cover.name)
return cover return cover
except Error as e: except Exception as e:
return False return False
def compare_shelf_current(self): def compare_shelf_current(self):