23 Constructor |
23 Constructor |
24 |
24 |
25 @param vcs reference to the vcs object |
25 @param vcs reference to the vcs object |
26 @param parent parent widget (QWidget) |
26 @param parent parent widget (QWidget) |
27 """ |
27 """ |
28 super(VcsCommandOptionsDialog, self).__init__(parent) |
28 super().__init__(parent) |
29 self.setupUi(self) |
29 self.setupUi(self) |
30 |
30 |
31 opt = vcs.vcsGetOptions() |
31 opt = vcs.vcsGetOptions() |
32 self.globalEdit.setText(" ".join(opt['global'])) |
32 self.globalEdit.setText(" ".join(opt['global'])) |
33 self.commitEdit.setText(" ".join(opt['commit'])) |
33 self.commitEdit.setText(" ".join(opt['commit'])) |