eric7/PluginManager/PluginRepositoryDialog.py

branch
eric7
changeset 8314
e3642a6a1e71
parent 8312
800c432b34c8
child 8318
962bce857696
equal deleted inserted replaced
8313:dac33c7fce07 8314:e3642a6a1e71
42 import Utilities 42 import Utilities
43 import Preferences 43 import Preferences
44 44
45 import UI.PixmapCache 45 import UI.PixmapCache
46 46
47 from eric6config import getConfig 47 from eric7config import getConfig
48 48
49 49
50 class PluginRepositoryWidget(QWidget, Ui_PluginRepositoryDialog): 50 class PluginRepositoryWidget(QWidget, Ui_PluginRepositoryDialog):
51 """ 51 """
52 Class implementing a dialog showing the available plugins. 52 Class implementing a dialog showing the available plugins.
849 def __startPluginInstall(self): 849 def __startPluginInstall(self):
850 """ 850 """
851 Private slot to start the eric plugin installation dialog. 851 Private slot to start the eric plugin installation dialog.
852 """ 852 """
853 proc = QProcess() 853 proc = QProcess()
854 applPath = os.path.join(getConfig("ericDir"), "eric6_plugininstall.py") 854 applPath = os.path.join(getConfig("ericDir"), "eric7_plugininstall.py")
855 855
856 args = [] 856 args = []
857 args.append(applPath) 857 args.append(applPath)
858 args += self.cw.getDownloadedPlugins() 858 args += self.cw.getDownloadedPlugins()
859 859

eric ide

mercurial