summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcos Pinto <markybob@dipconsultants.com>2007-11-26 05:57:31 +0000
committerMarcos Pinto <markybob@dipconsultants.com>2007-11-26 05:57:31 +0000
commit2b1a4a8a8e09e08c2a18339db30bcfe16f042dd7 (patch)
tree756c98e05d7edaff7bf9aad7c1d03a6cda52d2ae
parentfd2a3a56076f97609c98314dc80c6a7408099851 (diff)
downloaddeluge-2b1a4a8a8e09e08c2a18339db30bcfe16f042dd7.tar.gz
deluge-2b1a4a8a8e09e08c2a18339db30bcfe16f042dd7.tar.bz2
deluge-2b1a4a8a8e09e08c2a18339db30bcfe16f042dd7.zip
fix typo
-rw-r--r--src/plugins.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins.py b/src/plugins.py
index b8800a921..e4808df07 100644
--- a/src/plugins.py
+++ b/src/plugins.py
@@ -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)