- moved elements to compatibility with mediaserver.

- adapted files to mediaserver.
- added mediaserver banner images.
- added mediaserver code.
This commit is contained in:
alfa_addon_10
2017-08-12 23:06:13 +02:00
parent 1444becee5
commit 6318ef0850
395 changed files with 10254 additions and 1856 deletions

View File

@@ -0,0 +1,12 @@
# -*- 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__), "..", "..")))