Change to the plug-in manager to support plug-in sets (like the documentation sets plug-ins). These containe a '_' in the plug-in archive name.

Sun, 16 Oct 2016 11:44:20 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 16 Oct 2016 11:44:20 +0200
changeset 5236
9487d3fbb71e
parent 5234
dc9281cba492
child 5238
682d0f6a6074

Change to the plug-in manager to support plug-in sets (like the documentation sets plug-ins). These containe a '_' in the plug-in archive name.

PluginManager/PluginManager.py file | annotate | diff | comparison | revisions
--- a/PluginManager/PluginManager.py	Sat Oct 15 16:22:04 2016 +0200
+++ b/PluginManager/PluginManager.py	Sun Oct 16 11:44:20 2016 +0200
@@ -807,6 +807,9 @@
             module = self.__failedModules[name]
             autoactivate = False
             active = False
+        elif "_" in name:
+            # try stripping of a postfix
+            return self.getPluginDetails(name.rsplit("_", 1)[0])
         else:
             # should not happen
             return None

eric ide

mercurial