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 |