31 @param taglist list of previously entered tags (list of strings) |
31 @param taglist list of previously entered tags (list of strings) |
32 @param revision revision to set tag for (string) |
32 @param revision revision to set tag for (string) |
33 @param tagName name of the tag (string) |
33 @param tagName name of the tag (string) |
34 @param parent parent widget (QWidget) |
34 @param parent parent widget (QWidget) |
35 """ |
35 """ |
36 super(HgTagDialog, self).__init__(parent) |
36 super().__init__(parent) |
37 self.setupUi(self) |
37 self.setupUi(self) |
38 |
38 |
39 self.okButton = self.buttonBox.button( |
39 self.okButton = self.buttonBox.button( |
40 QDialogButtonBox.StandardButton.Ok) |
40 QDialogButtonBox.StandardButton.Ok) |
41 self.okButton.setEnabled(False) |
41 self.okButton.setEnabled(False) |