Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <forenjunkie@chello.at>2017-02-24 00:58:23 +0300
committerPhilipp Hörist <forenjunkie@chello.at>2017-02-24 01:07:16 +0300
commita841c598753409af89bf3eafffb65d31903c68e7 (patch)
tree4825e3255c5918f6af315be278aa76077de2795b /plugin_installer
parent5768f07c7a88f7f2810dd30e33340a4bd2370cc9 (diff)
[plugin_installer] Remove code for older versions
Diffstat (limited to 'plugin_installer')
-rw-r--r--plugin_installer/plugin_installer.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/plugin_installer/plugin_installer.py b/plugin_installer/plugin_installer.py
index d6b255f..8bf0860 100644
--- a/plugin_installer/plugin_installer.py
+++ b/plugin_installer/plugin_installer.py
@@ -275,9 +275,6 @@ class PluginInstaller(GajimPlugin):
icon = self.def_icon
if os.path.isfile(icon_file):
icon = GdkPixbuf.Pixbuf.new_from_file_at_size(icon_file, 16, 16)
- if not hasattr(plugin, 'activatable'):
- # version 0.15
- plugin.activatable = False
row = [plugin, plugin.name, is_active, plugin.activatable, icon]
self.installed_plugins_model.append(row)
dialog.popup()