Skip to content

Commit fa3f3bd

Browse files
committed
fix: Fixed bugs introduced in the last update
1 parent df8f3da commit fa3f3bd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
VERSION = "0.2.4"
3+
VERSION = "0.2.5"
44

55
install_requires = [
66
"lxml",

src/manga2pdf_gui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ def browse_input_file(self):
429429
self.input_entry.insert(0, path)
430430

431431
converter = MangaPdfConverter(input_path=self.input_path, output_path=self.output_path, pagelayout=self.pagelayout_var.get(), pagemode=self.pagemode_var.get(), direction=self.direction_var.get())
432-
if converter.is_epub_file(input_path):
432+
if converter.is_epub_file(self.input_path):
433433
with zipfile.ZipFile(self.input_path) as epub:
434434
opf_name = converter.extract_epub_contents(epub)[3]
435435
epub_metadata = converter.extract_epub_metadata(epub, opf_name)

0 commit comments

Comments
 (0)