mirror of
https://github.com/correl/Transmission-XBMC.git
synced 2025-03-12 17:00:12 -09:00
Fixed import error
This commit is contained in:
parent
3d43e00d07
commit
a5c1e17be8
1 changed files with 2 additions and 1 deletions
|
@ -7,7 +7,6 @@ import xbmc, xbmcaddon, xbmcgui
|
|||
import transmissionrpc
|
||||
import urllib
|
||||
import subprocess
|
||||
import common
|
||||
|
||||
__settings__ = xbmcaddon.Addon(id='script.transmission')
|
||||
__addon__ = xbmcaddon.Addon()
|
||||
|
@ -17,6 +16,8 @@ __icon__ = __addon__.getAddonInfo('icon')
|
|||
BASE_RESOURCE_PATH = xbmc.translatePath( os.path.join( __settings__.getAddonInfo('path'), 'resources', 'lib' ) )
|
||||
sys.path.append (BASE_RESOURCE_PATH)
|
||||
|
||||
import common
|
||||
|
||||
class SubstitutePlayer(xbmc.Player):
|
||||
def __init__(self):
|
||||
xbmc.Player.__init__(self)
|
||||
|
|
Loading…
Add table
Reference in a new issue