542 def __startPluginInstall(self): |
542 def __startPluginInstall(self): |
543 """ |
543 """ |
544 Private slot to start the eric5 plugin installation dialog. |
544 Private slot to start the eric5 plugin installation dialog. |
545 """ |
545 """ |
546 proc = QProcess() |
546 proc = QProcess() |
547 applPath = os.path.join(getConfig("ericDir"), "eric5-plugininstall.py") |
547 applPath = os.path.join(getConfig("ericDir"), "eric5_plugininstall.py") |
548 |
548 |
549 args = [] |
549 args = [] |
550 args.append(applPath) |
550 args.append(applPath) |
551 args += self.cw.getDownloadedPlugins() |
551 args += self.cw.getDownloadedPlugins() |
552 |
552 |