25 @param reposURL repository path (string) or None |
25 @param reposURL repository path (string) or None |
26 @param standardLayout flag indicating the layout of the |
26 @param standardLayout flag indicating the layout of the |
27 repository (boolean) |
27 repository (boolean) |
28 @param parent parent widget (QWidget) |
28 @param parent parent widget (QWidget) |
29 """ |
29 """ |
30 super(SvnTagDialog, self).__init__(parent) |
30 super().__init__(parent) |
31 self.setupUi(self) |
31 self.setupUi(self) |
32 |
32 |
33 self.okButton = self.buttonBox.button( |
33 self.okButton = self.buttonBox.button( |
34 QDialogButtonBox.StandardButton.Ok) |
34 QDialogButtonBox.StandardButton.Ok) |
35 self.okButton.setEnabled(False) |
35 self.okButton.setEnabled(False) |