Skip to content

Commit

Permalink
LOAD_TRUNCATED_IMAGES = True
Browse files Browse the repository at this point in the history
axu2 committed Mar 5, 2024
1 parent 33cc324 commit 49bf80f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions kindlecomicconverter/comic2ebook.py
Original file line number Diff line number Diff line change
@@ -21,7 +21,6 @@
import os
import pathlib
import re
import subprocess
import sys
from argparse import ArgumentParser
from time import strftime, gmtime
@@ -36,7 +35,7 @@
from uuid import uuid4
from natsort import os_sorted
from slugify import slugify as slugify_ext
from PIL import Image
from PIL import Image, ImageFile
from subprocess import STDOUT, PIPE
from psutil import virtual_memory, disk_usage
from html import escape as hescape
@@ -51,6 +50,8 @@
from . import kindle
from . import __version__

ImageFile.LOAD_TRUNCATED_IMAGES = True


def main(argv=None):
global options

0 comments on commit 49bf80f

Please sign in to comment.