From f96cc8e56abe3b78b1640ed2c7fc14b6d85b8ffd Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Mon, 26 Nov 2007 05:57:31 +0000 Subject: [PATCH] fix typo --- src/plugins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)