This commit is contained in:
Marcos Pinto 2007-11-26 05:57:31 +00:00
parent fd2a3a5607
commit 2b1a4a8a8e

View File

@ -60,7 +60,7 @@ class PluginManager:
# to be by design.
mod = __import__(modname, globals(), locals(), [''])
if 'deluge_init' in dir(mod):
if (modname != "TorrentPieces") and (modname != "Simple RSS"):
if (modname != "TorrentPieces") and (modname != "SimpleRSS"):
print "Initialising plugin", modname
try:
mod.deluge_init(path)