Fix for the plug-in repository dialog.

Mon, 11 Dec 2017 18:29:04 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Mon, 11 Dec 2017 18:29:04 +0100
changeset 6024
e5a2b8b613dd
parent 6023
c6dabc972560
child 6025
9dfb5a421a56

Fix for the plug-in repository dialog.

PluginManager/PluginRepositoryDialog.py file | annotate | diff | comparison | revisions
diff -r c6dabc972560 -r e5a2b8b613dd PluginManager/PluginRepositoryDialog.py
--- a/PluginManager/PluginRepositoryDialog.py	Sun Dec 10 18:45:16 2017 +0100
+++ b/PluginManager/PluginRepositoryDialog.py	Mon Dec 11 18:29:04 2017 +0100
@@ -907,7 +907,7 @@
     
         if pluginName in hiddenPlugins and \
                 not Preferences.getPluginManager("KeepHidden"):
-            removeFiles = downloads[pluginName][0]
+            removeFiles = [f[0] for f in downloads[pluginName]]
         else:
             removeFiles = [f[0] for f in downloads[pluginName][
                 :-Preferences.getPluginManager("KeepGenerations")]]

eric ide

mercurial