Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarkRenameDialog.py

branch
5_4_x
changeset 3409
b7a3455e9ba0
parent 3160
209a07d7e401
equal deleted inserted replaced
3405:ed72a8e08be4 3409:b7a3455e9ba0
63 Public method to retrieve the entered data. 63 Public method to retrieve the entered data.
64 64
65 @return tuple naming the new and old bookmark names 65 @return tuple naming the new and old bookmark names
66 (string, string) 66 (string, string)
67 """ 67 """
68 return self.nameEdit.text(), self.bookmarkCombo.currentText() 68 return (
69 self.nameEdit.text().replace(" ", "_"),
70 self.bookmarkCombo.currentText().replace(" ", "_")
71 )

eric ide

mercurial