You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
acsm-calibre-plugin/calibre-plugin/__calibre_compat_code.py

24 lines
829 B
Python

#@@CALIBRE_COMPAT_CODE_START@@
import sys, os
# Compatibility code taken from noDRM's DeDRM fork.
# This fixes the weird import issues with Calibre 2,
# and it allows me to get rid of a ton of try-except blocks.
if "calibre" in sys.modules:
# Explicitly allow importing everything ...
if os.path.dirname(os.path.abspath(__file__)) not in sys.path:
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
# Bugfix for Calibre < 5:
if sys.version_info[0] == 2:
from calibre.utils.config import config_dir
for filename in ["ACSM Input.zip", "DeACSM.zip"]:
__zip_path = os.path.join(config_dir, "plugins", filename)
if __zip_path not in sys.path and os.path.exists(__zip_path):
sys.path.insert(0, __zip_path)
#@@CALIBRE_COMPAT_CODE_END@@