Mercurial > public > mercurial-scm > hg-stable
diff mercurial/commands.py @ 4443:eff2eefdb65a
Add ability to parse branch information to hg import
author | Eric Hopper <hopper@omnifarious.org> |
---|---|
date | Thu, 17 May 2007 20:09:47 -0700 |
parents | 3900f684a150 |
children | af8db3b42a4a |
line wrap: on
line diff
--- a/mercurial/commands.py Thu May 17 20:09:44 2007 -0700 +++ b/mercurial/commands.py Thu May 17 20:09:47 2007 -0700 @@ -1516,10 +1516,10 @@ if pf == '-': ui.status(_("applying patch from stdin\n")) - tmpname, message, user, date, nodeid, p1, p2 = patch.extract(ui, sys.stdin) + tmpname, message, user, date, branch, nodeid, p1, p2 = patch.extract(ui, sys.stdin) else: ui.status(_("applying %s\n") % p) - tmpname, message, user, date, nodeid, p1, p2 = patch.extract(ui, file(pf)) + tmpname, message, user, date, branch, nodeid, p1, p2 = patch.extract(ui, file(pf)) if tmpname is None: raise util.Abort(_('no diffs found'))