# HG changeset patch # User Pierre-Yves David # Date 2015-04-11 20:55:14 # Node ID bb67e52362d6eb9cfd9e41f710ccd5caa05f85b1 # Parent d283517b260bf21814282023ba791f9680e742ee bundle2: fix names for error part handler The name is not very important but copy paste banshee got there. We make distinctive name. diff --git a/mercurial/bundle2.py b/mercurial/bundle2.py --- a/mercurial/bundle2.py +++ b/mercurial/bundle2.py @@ -1158,12 +1158,12 @@ def handlereplycaps(op, inpart): op.reply = bundle20(op.ui, caps) @parthandler('error:abort', ('message', 'hint')) -def handlereplycaps(op, inpart): +def handleerrorabort(op, inpart): """Used to transmit abort error over the wire""" raise util.Abort(inpart.params['message'], hint=inpart.params.get('hint')) @parthandler('error:unsupportedcontent', ('parttype', 'params')) -def handlereplycaps(op, inpart): +def handleerrorunsupportedcontent(op, inpart): """Used to transmit unknown content error over the wire""" kwargs = {} parttype = inpart.params.get('parttype') @@ -1176,7 +1176,7 @@ def handlereplycaps(op, inpart): raise error.UnsupportedPartError(**kwargs) @parthandler('error:pushraced', ('message',)) -def handlereplycaps(op, inpart): +def handleerrorpushraced(op, inpart): """Used to transmit push race error over the wire""" raise error.ResponseError(_('push failed:'), inpart.params['message'])