From a42f8a733810bac44dc436d785e209112fc3a102 Mon Sep 17 00:00:00 2001 From: ping Date: Fri, 8 Sep 2023 19:00:48 +0800 Subject: [PATCH] Fix verify card dupe --- calibre-plugin/workers.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/calibre-plugin/workers.py b/calibre-plugin/workers.py index f5ff626..c286e48 100644 --- a/calibre-plugin/workers.py +++ b/calibre-plugin/workers.py @@ -258,11 +258,9 @@ def run(self): "Total Libby Verify Card took %f seconds" % (timer() - total_start) ) self.finished.emit(updated_card) - self.finished.emit(self.card) except Exception as err: logger.info( - "Libby Libby Verify Card failed after %f seconds" - % (timer() - total_start) + "Libby Verify Card failed after %f seconds" % (timer() - total_start) ) self.errored.emit(err)