make sure simplerss does not load

This commit is contained in:
Marcos Pinto 2007-11-26 05:40:24 +00:00
parent 0d51bb250e
commit 675a286f8a
1 changed files with 1 additions and 1 deletions

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":
if (modname != "TorrentPieces") and (modname != "Simple RSS"):
print "Initialising plugin", modname
try:
mod.deluge_init(path)