diff --git a/kindlecomicconverter/comic2ebook.py b/kindlecomicconverter/comic2ebook.py index fef6fcf..5b65a65 100755 --- a/kindlecomicconverter/comic2ebook.py +++ b/kindlecomicconverter/comic2ebook.py @@ -1171,6 +1171,7 @@ def checkPre(source): def makeBook(source, qtgui=None): + start = perf_counter() global GUI GUI = qtgui if GUI: @@ -1273,6 +1274,8 @@ def makeBook(source, qtgui=None): elif os.path.isdir(source): rmtree(source) + end = perf_counter() + print(f"makeBook: {end - start} seconds") return filepath