Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarkRenameDialog.py

changeset 3408
b6e6a7062d12
parent 3366
6084bb3c3911
child 3484
645c12de6b0c
equal deleted inserted replaced
3407:07966c6b5565 3408:b6e6a7062d12
66 Public method to retrieve the entered data. 66 Public method to retrieve the entered data.
67 67
68 @return tuple naming the new and old bookmark names 68 @return tuple naming the new and old bookmark names
69 (string, string) 69 (string, string)
70 """ 70 """
71 return self.nameEdit.text(), self.bookmarkCombo.currentText() 71 return (
72 self.nameEdit.text().replace(" ", "_"),
73 self.bookmarkCombo.currentText().replace(" ", "_")
74 )

eric ide

mercurial