Skip to content

Commit

Permalink
Fix issue with ebook-convert missing library
Browse files Browse the repository at this point in the history
  • Loading branch information
mmguero committed Sep 6, 2022
1 parent 96e1220 commit 90b1da5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ RUN echo "deb http://deb.debian.org/debian bullseye-backports main" >> /etc/apt/
libegl1 \
libmagic1 \
libopengl0 \
libxkbcommon0 \
python3-ebooklib \
python3-magic \
xvfb \
Expand Down
1 change: 1 addition & 0 deletions docker/Dockerfile.arm32v7
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ RUN apt-get update && \
libtcl8.6 \
libtk8.6 \
libxft2 \
libxkbcommon0 \
libxml2 \
libxml2-dev \
libxslt1-dev \
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = montag-cleaner
version = 1.0.2
version = 1.0.3
author = Seth Grover
author_email = mero.mero.guero@gmail.com
description = Montag is a utility which reads e-book files and scrubs them of profanity.
Expand Down
2 changes: 1 addition & 1 deletion src/montag_cleaner/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Montag is a utility which reads e-book files and scrubs them of profanity."""

__version__ = "1.0.2"
__version__ = "1.0.3"
__author__ = "Seth Grover <mero.mero.guero@gmail.com>"
__all__ = []

Expand Down
1 change: 1 addition & 0 deletions src/montag_cleaner/montag.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ def RunMontag():
if "epub" in bookMagic.lower():
epubFileSpec = args.input
wasEpub = True
toEpubExitCode = 0
else:
wasEpub = False
epubFileSpec = os.path.join(tmpDirName, 'ebook.epub')
Expand Down

0 comments on commit 90b1da5

Please sign in to comment.