eric6/Plugins/VcsPlugins/vcsGit/GitCherryPickDialog.py

changeset 8218
7c09585bd960
parent 8143
2c730d5fd177
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
23 23
24 @param commits list of commits to show in the commits pane (list of 24 @param commits list of commits to show in the commits pane (list of
25 strings) 25 strings)
26 @param parent reference to the parent widget (QWidget) 26 @param parent reference to the parent widget (QWidget)
27 """ 27 """
28 super(GitCherryPickDialog, self).__init__(parent) 28 super().__init__(parent)
29 self.setupUi(self) 29 self.setupUi(self)
30 30
31 if commits: 31 if commits:
32 self.commitsEdit.setPlainText("\n".join(commits)) 32 self.commitsEdit.setPlainText("\n".join(commits))
33 33

eric ide

mercurial