diff mercurial/httppeer.py @ 49751:a6e2a668c746

peer: have a common constructor and use it For now it does not do much, but we will extend it to also store a path object soon.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Sat, 03 Dec 2022 00:00:41 +0100
parents f075a9463ee7
children 5f71fff8dc74
line wrap: on
line diff
--- a/mercurial/httppeer.py	Fri Dec 02 18:04:51 2022 +0100
+++ b/mercurial/httppeer.py	Sat Dec 03 00:00:41 2022 +0100
@@ -382,7 +382,7 @@
 
 class httppeer(wireprotov1peer.wirepeer):
     def __init__(self, ui, path, url, opener, requestbuilder, caps):
-        self.ui = ui
+        super().__init__(ui)
         self._path = path
         self._url = url
         self._caps = caps