1
0
mirror of https://github.com/gryf/ebook-converter.git synced 2026-04-26 08:21:28 +02:00

Renamed constants, to make room for real constants module

This commit is contained in:
2020-05-26 19:52:18 +02:00
parent 399456d9ad
commit 2c78d6e3a6
55 changed files with 59 additions and 58 deletions
+4 -4
View File
@@ -5,10 +5,10 @@ import sys
import threading
from ebook_converter import force_unicode
from ebook_converter.constants import filesystem_encoding
from ebook_converter.constants import get_windows_username
from ebook_converter.constants import islinux
from ebook_converter.constants import iswindows
from ebook_converter.constants_old import filesystem_encoding
from ebook_converter.constants_old import get_windows_username
from ebook_converter.constants_old import islinux
from ebook_converter.constants_old import iswindows
from ebook_converter.utils.filenames import ascii_filename
+1 -1
View File
@@ -1,7 +1,7 @@
import subprocess, os, sys, time
from functools import partial
from ebook_converter.constants import isosx, isfrozen, filesystem_encoding
from ebook_converter.constants_old import isosx, isfrozen, filesystem_encoding
from ebook_converter.utils.config import prefs
from ebook_converter.ptempfile import PersistentTemporaryFile, base_dir
from ebook_converter.utils.serialize import msgpack_dumps
+1 -1
View File
@@ -3,7 +3,7 @@ from multiprocessing.connection import Client
from threading import Thread
from contextlib import closing
from ebook_converter.constants import iswindows
from ebook_converter.constants_old import iswindows
from ebook_converter.utils.ipc import eintr_retry_call
from ebook_converter.utils.ipc.launch import Worker
from ebook_converter.utils.serialize import msgpack_loads, msgpack_dumps