Sat, 22 Oct 2011 13:20:50 +0200
Fixed an issue in the Mercurial command line server interface code of commit causing a commit of a merge to fail.
Plugins/VcsPlugins/vcsMercurial/hg.py | file | annotate | diff | comparison | revisions |
--- a/Plugins/VcsPlugins/vcsMercurial/hg.py Sat Oct 22 13:17:45 2011 +0200 +++ b/Plugins/VcsPlugins/vcsMercurial/hg.py Sat Oct 22 13:20:50 2011 +0200 @@ -454,7 +454,8 @@ if isinstance(name, list): self.addArguments(args, name) else: - args.append(name) + if dname != repodir or fname != ".": + args.append(name) else: if isinstance(name, list): self.addArguments(args, fnames)