From 3e5ad3e60d0b1a8ec2647ff67d014ac52a0a2032 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Mon, 17 Sep 2007 10:30:29 +0000 Subject: [PATCH] disable torrent pieces plugin from loading to prevent upgrade problems now that its been removed --- src/interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interface.py b/src/interface.py index 45bc44bf8..70169a61d 100644 --- a/src/interface.py +++ b/src/interface.py @@ -951,7 +951,7 @@ 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": + if plugin != "Blocklist Importer" and plugin != "Torrent Pieces": try: self.plugins.enable_plugin(plugin) except KeyError: