PluginManager/PluginRepositoryDialog.py

changeset 3670
f0cb7579c0b4
parent 3656
441956d8fce5
child 3676
2f62b060a931
equal deleted inserted replaced
3669:ac84ac3c0f05 3670:f0cb7579c0b4
38 import Utilities 38 import Utilities
39 import Preferences 39 import Preferences
40 40
41 import UI.PixmapCache 41 import UI.PixmapCache
42 42
43 from eric5config import getConfig 43 from eric6config import getConfig
44 44
45 45
46 class PluginRepositoryWidget(QWidget, Ui_PluginRepositoryDialog): 46 class PluginRepositoryWidget(QWidget, Ui_PluginRepositoryDialog):
47 """ 47 """
48 Class implementing a dialog showing the available plugins. 48 Class implementing a dialog showing the available plugins.
789 self.cw.buttonBox.rejected.connect(self.close) 789 self.cw.buttonBox.rejected.connect(self.close)
790 self.cw.closeAndInstall.connect(self.__startPluginInstall) 790 self.cw.closeAndInstall.connect(self.__startPluginInstall)
791 791
792 def __startPluginInstall(self): 792 def __startPluginInstall(self):
793 """ 793 """
794 Private slot to start the eric5 plugin installation dialog. 794 Private slot to start the eric6 plugin installation dialog.
795 """ 795 """
796 proc = QProcess() 796 proc = QProcess()
797 applPath = os.path.join(getConfig("ericDir"), "eric5_plugininstall.py") 797 applPath = os.path.join(getConfig("ericDir"), "eric6_plugininstall.py")
798 798
799 args = [] 799 args = []
800 args.append(applPath) 800 args.append(applPath)
801 args += self.cw.getDownloadedPlugins() 801 args += self.cw.getDownloadedPlugins()
802 802

eric ide

mercurial