delete system import

pull/1/head
DiMartinoXBMC 2015-06-28 16:27:19 +03:00
parent 06204dcd9c
commit 70d01a0043
1 changed files with 15 additions and 22 deletions

View File

@ -11,13 +11,6 @@ platform = get_platform()
print '[script.module.libtorrent]: platform ' + str(platform)
try:
import libtorrent
print '[script.module.libtorrent]: Imported libtorrent v' + libtorrent.version + ' from system'
except Exception, e:
print '[script.module.libtorrent]: Error importing from system. Exception: ' + str(e)
try:
#dirname = os.path.join(xbmc.translatePath('special://home'), 'addons', 'script.module.libtorrent',
# 'python_libtorrent', platform['system'])
#sys.path.insert(0, dirname)
@ -32,6 +25,6 @@ except Exception, e:
#print '[script.module.libtorrent]: Imported libtorrent v' + libtorrent.version + ' from python_libtorrent.' + platform[
# 'system']
except Exception, e:
except Exception, e:
print '[script.module.libtorrent]: Error importing python_libtorrent.' + platform['system'] + '. Exception: ' + str(e)
pass