89 """ |
89 """ |
90 Public method to retrieve the tag data. |
90 Public method to retrieve the tag data. |
91 |
91 |
92 @return tuple of two strings and int (tag, revision, tag operation) |
92 @return tuple of two strings and int (tag, revision, tag operation) |
93 """ |
93 """ |
94 tag = self.tagCombo.currentText() |
94 tag = self.tagCombo.currentText().replace(" ", "_") |
95 tagOp = 0 |
95 tagOp = 0 |
96 if self.createTagButton.isChecked(): |
96 if self.createTagButton.isChecked(): |
97 if self.globalTagButton.isChecked(): |
97 if self.globalTagButton.isChecked(): |
98 tagOp = HgTagDialog.CreateGlobalTag |
98 tagOp = HgTagDialog.CreateGlobalTag |
99 else: |
99 else: |