-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathdefault.py
More file actions
27 lines (22 loc) · 727 Bytes
/
Copy pathdefault.py
File metadata and controls
27 lines (22 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- coding: iso-8859-1 -*-
#------------------------------------------------------------
# pelisalacarta
# XBMC entry point
# http://blog.tvalacarta.info/plugin-xbmc/pelisalacarta/
#------------------------------------------------------------
# Constants
__plugin__ = "streamondemand"
__author__ = "iSOD"
__url__ = "http://blog.tvalacarta.info/plugin-xbmc/pelisalacarta/"
__date__ = "03/01/2016"
__version__ = "5.1.9"
import os
import sys
from core import config
from core import logger
logger.info("streamondemand.default init...")
librerias = xbmc.translatePath( os.path.join( config.get_runtime_path(), 'lib' ) )
sys.path.append (librerias)
# Runs xbmc launcher
from platformcode import launcher
launcher.run()