# HG changeset patch # User Thomas Arendsen Hein # Date 1350976966 -7200 # Node ID 526081552f3d67fa515d730f3750fb36d431ce52 # Parent afbc7714c3238c63e27d6ee58be4beda8157a811 localrepo: translate "push includes X changeset" only once This was introduced in 12fdaa30063a diff -r afbc7714c323 -r 526081552f3d mercurial/localrepo.py --- a/mercurial/localrepo.py Tue Oct 23 09:27:48 2012 +0200 +++ b/mercurial/localrepo.py Tue Oct 23 09:22:46 2012 +0200 @@ -1880,11 +1880,11 @@ for node in outgoing.missingheads: ctx = self[node] if ctx.obsolete(): - raise util.Abort(_(mso) % ctx) + raise util.Abort(mso % ctx) elif ctx.unstable(): - raise util.Abort(_(msu) % ctx) + raise util.Abort(msu % ctx) elif ctx.bumped(): - raise util.Abort(_(msb) % ctx) + raise util.Abort(msb % ctx) discovery.checkheads(self, remote, outgoing, remoteheads, newbranch, bool(inc))