--- a/Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py Fri Oct 11 19:51:20 2013 +0200 +++ b/Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py Sat Oct 12 15:01:28 2013 +0200 @@ -44,7 +44,8 @@ res = False if self.vcs.isExtensionActive("bookmarks"): bookmarksList = \ - self.vcs.getExtensionObject("bookmarks").hgGetBookmarksList(repodir) + self.vcs.getExtensionObject("bookmarks")\ + .hgGetBookmarksList(repodir) else: bookmarksList = None from .HgRebaseDialog import HgRebaseDialog @@ -52,8 +53,8 @@ self.vcs.hgGetBranchesList(repodir), bookmarksList) if dlg.exec_() == QDialog.Accepted: - indicator, sourceRev, destRev, collapse, keep, keepBranches, detach = \ - dlg.getData() + (indicator, sourceRev, destRev, collapse, keep, keepBranches, + detach) = dlg.getData() args = [] args.append("rebase")