From patchwork Thu Feb 15 02:05:27 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D2218: wireprotoserver: rename webproto to httpv1protocolhandler From: phabricator X-Patchwork-Id: 27949 Message-Id: To: mercurial-devel@mercurial-scm.org Date: Thu, 15 Feb 2018 02:05:27 +0000 This revision was automatically updated to reflect the committed changes. Closed by commit rHG42bf7b6de53c: wireprotoserver: rename webproto to httpv1protocolhandler (authored by indygreg, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D2218?vs=5617&id=5744 REVISION DETAIL https://phab.mercurial-scm.org/D2218 AFFECTED FILES mercurial/wireprotoserver.py CHANGE DETAILS To: indygreg, #hg-reviewers, lothiraldan Cc: mercurial-devel diff --git a/mercurial/wireprotoserver.py b/mercurial/wireprotoserver.py --- a/mercurial/wireprotoserver.py +++ b/mercurial/wireprotoserver.py @@ -105,7 +105,7 @@ return ''.join(chunks) -class webproto(baseprotocolhandler): +class httpv1protocolhandler(baseprotocolhandler): def __init__(self, req, ui): self._req = req self._ui = ui @@ -201,7 +201,7 @@ if cmd not in wireproto.commands: return None - proto = webproto(req, repo.ui) + proto = httpv1protocolhandler(req, repo.ui) return { 'cmd': cmd,