PluginManager/PluginManager.py

changeset 6187
2cc7e3629784
parent 6088
b7fdd0db835e
child 6188
5a6ae3be31e6
--- a/PluginManager/PluginManager.py	Mon Mar 12 19:49:46 2018 +0100
+++ b/PluginManager/PluginManager.py	Mon Mar 12 19:57:16 2018 +0100
@@ -883,7 +883,7 @@
         """
         pluginDict = {}
         
-        for name, module in \
+        for _name, module in \
             list(self.__onDemandActiveModules.items()) + \
                 list(self.__onDemandInactiveModules.items()):
             if getattr(module, "pluginType") == type_ and \
@@ -909,7 +909,7 @@
         @param name name of the plugin type (string)
         @return preview pixmap (QPixmap)
         """
-        for modname, module in \
+        for _modname, module in \
             list(self.__onDemandActiveModules.items()) + \
                 list(self.__onDemandInactiveModules.items()):
             if getattr(module, "pluginType") == type_ and \
@@ -1089,7 +1089,7 @@
         """
         vcsDict = {}
         
-        for name, module in \
+        for _name, module in \
             list(self.__onDemandActiveModules.items()) + \
                 list(self.__onDemandInactiveModules.items()):
             if getattr(module, "pluginType") == "version_control":
@@ -1350,7 +1350,7 @@
         
         @param type_ type of the plugin to clear private data for (string)
         """
-        for name, module in \
+        for _name, module in \
             list(self.__onDemandActiveModules.items()) + \
             list(self.__onDemandInactiveModules.items()) + \
             list(self.__activeModules.items()) + \

eric ide

mercurial