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
commitf96cc8e56abe3b78b1640ed2c7fc14b6d85b8ffd (patch)
treef2f3de8eeeaaa1231b6aaabd2e23b1b46e631bbc
parent675a286f8aa4bc277d9f8f2c3d7cc678577018a1 (diff)
downloaddeluge-f96cc8e56abe3b78b1640ed2c7fc14b6d85b8ffd.tar.gz
deluge-f96cc8e56abe3b78b1640ed2c7fc14b6d85b8ffd.tar.bz2
deluge-f96cc8e56abe3b78b1640ed2c7fc14b6d85b8ffd.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)