--- a/Plugins/VcsPlugins/vcsMercurial/HgBookmarkRenameDialog.py Wed Nov 16 19:06:28 2016 +0100 +++ b/Plugins/VcsPlugins/vcsMercurial/HgBookmarkRenameDialog.py Wed Nov 16 19:12:01 2016 +0100 @@ -67,10 +67,10 @@ """ Public method to retrieve the entered data. - @return tuple naming the new and old bookmark names + @return tuple naming the old and new bookmark names (string, string) """ return ( + self.bookmarkCombo.currentText().replace(" ", "_"), self.nameEdit.text().replace(" ", "_"), - self.bookmarkCombo.currentText().replace(" ", "_") )