From 3ba156632ff6a0c52a2ac030b85b1844e7e24453 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Mon, 24 Dec 2007 04:47:34 +0000 Subject: [PATCH] fix flexrss before blocklist --- src/interface.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/interface.py b/src/interface.py index 9c3b17376..5cab40dd5 100644 --- a/src/interface.py +++ b/src/interface.py @@ -1069,13 +1069,15 @@ window, please enter your password")) def load_plugins(self): enable_plugins = self.config.get('enabled_plugins').split(':') for plugin in enable_plugins: - if plugin != "Blocklist Importer" and plugin != "Torrent Pieces": + if plugin != "Blocklist Importer" and plugin != "Torrent Pieces" and plugin != "FlexRSS": try: self.plugins.enable_plugin(plugin) except KeyError: pass if "Blocklist Importer" in enable_plugins: self.plugins.enable_plugin("Blocklist Importer") + if "FlexRSS" in enable_plugins: + self.plugins.enable_plugin("FlexRSS") ## Call via a timer to update the interface def update(self):