Files
addon/channels/porn/__init__.py
greko17 1e07b9e029 extra: riorganizzazione canali
spostati i canali per adulti in cartella separata
2019-09-19 10:49:43 +02:00

13 lines
408 B
Python

# -*- coding: utf-8 -*-
import os
import sys
# Appends the main plugin dir to the PYTHONPATH if an internal package cannot be imported.
# Examples: In Plex Media Server all modules are under "Code.*" package, and in Enigma2 under "Plugins.Extensions.*"
try:
# from core import logger
import core
except:
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), os.path.pardir)))