diff -r f910b91dd912 -r 2f5dbc24874a mercurial/sshrepo.py --- a/mercurial/sshrepo.py Thu Jun 15 13:27:57 2006 -0700 +++ b/mercurial/sshrepo.py Thu Jun 15 15:36:23 2006 -0700 @@ -144,7 +144,7 @@ def addchangegroup(self, cg, source): d = self.call("addchangegroup") if d: - raise hg.RepoError(_("push refused: %s"), d) + raise hg.RepoError(_("push refused: %s") % d) while 1: d = cg.read(4096)