Mercurial > public > mercurial-scm > hg
diff mercurial/localrepo.py @ 1427:0980d77f5e9a
Fixed problem with invoking hgmerge on paths with spaces.
author | michael.w.dales@intel.com |
---|---|
date | Mon, 24 Oct 2005 14:54:17 -0700 |
parents | c6e6ca96a033 |
children | 508a3f559553 |
line wrap: on
line diff
--- a/mercurial/localrepo.py Mon Oct 24 14:53:36 2005 -0700 +++ b/mercurial/localrepo.py Mon Oct 24 14:54:17 2005 -0700 @@ -1304,7 +1304,7 @@ cmd = (os.environ.get("HGMERGE") or self.ui.config("ui", "merge") or "hgmerge") - r = os.system("%s %s %s %s" % (cmd, a, b, c)) + r = os.system('%s "%s" "%s" "%s"' % (cmd, a, b, c)) if r: self.ui.warn(_("merging %s failed!\n") % fn)