Change libtorrent import behaviour to first try importing deluge.libtorrent and then libtorrent. It will now also raise an ImportError if libtorrent version is not 0.14.

This commit is contained in:
Andrew Resch 2008-12-10 23:30:09 +00:00
parent cbb7c6119d
commit e7914ed520
6 changed files with 30 additions and 12 deletions

View file

@ -29,9 +29,12 @@ import gobject
import deluge.component as component
try:
import libtorrent as lt
except ImportError:
import deluge.libtorrent as lt
except ImportError:
import libtorrent as lt
if not (libtorrent.version_major == 0 and libtorrent.version_minor == 14):
raise ImportError("This version of Deluge requires libtorrent 0.14!")
from deluge.log import LOG as log
class AlertManager(component.Component):

View file

@ -26,9 +26,12 @@
import os
try:
import libtorrent as lt
except ImportError:
import deluge.libtorrent as lt
except ImportError:
import libtorrent as lt
if not (libtorrent.version_major == 0 and libtorrent.version_minor == 14):
raise ImportError("This version of Deluge requires libtorrent 0.14!")
import deluge.component as component
from deluge.configmanager import ConfigManager
from deluge.log import LOG as log

View file

@ -39,9 +39,12 @@ import threading
import socket
try:
import libtorrent as lt
except ImportError:
import deluge.libtorrent as lt
except ImportError:
import libtorrent as lt
if not (libtorrent.version_major == 0 and libtorrent.version_minor == 14):
raise ImportError("This version of Deluge requires libtorrent 0.14!")
import deluge.configmanager
import deluge.common

View file

@ -30,9 +30,12 @@ import cPickle
import shutil
try:
import libtorrent as lt
except ImportError:
import deluge.libtorrent as lt
except ImportError:
import libtorrent as lt
if not (libtorrent.version_major == 0 and libtorrent.version_minor == 14):
raise ImportError("This version of Deluge requires libtorrent 0.14!")
from deluge.configmanager import ConfigManager
import deluge.core.torrentmanager
from deluge.log import LOG as log

View file

@ -28,9 +28,12 @@
import os
try:
import libtorrent as lt
except ImportError:
import deluge.libtorrent as lt
except ImportError:
import libtorrent as lt
if not (libtorrent.version_major == 0 and libtorrent.version_minor == 14):
raise ImportError("This version of Deluge requires libtorrent 0.14!")
import deluge.common
import deluge.component as component
from deluge.configmanager import ConfigManager

View file

@ -33,9 +33,12 @@ import time
import gobject
try:
import libtorrent as lt
except ImportError:
import deluge.libtorrent as lt
except ImportError:
import libtorrent as lt
if not (libtorrent.version_major == 0 and libtorrent.version_minor == 14):
raise ImportError("This version of Deluge requires libtorrent 0.14!")
import deluge.common
import deluge.component as component