Plugins/VcsPlugins/vcsMercurial/HgTagDialog.py

changeset 3408
b6e6a7062d12
parent 3366
6084bb3c3911
child 3484
645c12de6b0c
equal deleted inserted replaced
3407:07966c6b5565 3408:b6e6a7062d12
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:

eric ide

mercurial