# HG changeset patch # User Sune Foldager # Date 1256636021 -3600 # Node ID 1ad02c04356cd85a84d8f401ecd37fde75ddd75c # Parent 20b91f91f9cadfc2de79e7a2ecc07302b05ebca1 bundlerepo: fix small bug in exception raising diff -r 20b91f91f9ca -r 1ad02c04356c mercurial/bundlerepo.py --- a/mercurial/bundlerepo.py Sun Oct 25 14:45:38 2009 +0200 +++ b/mercurial/bundlerepo.py Tue Oct 27 10:33:41 2009 +0100 @@ -50,7 +50,7 @@ continue for p in (p1, p2): if not p in self.nodemap: - raise error.LookupError(p1, self.indexfile, + raise error.LookupError(p, self.indexfile, _("unknown parent")) if linkmapper is None: link = n