--- a/mercurial/sshpeer.py Sun Aug 06 18:00:19 2017 -0700
+++ b/mercurial/sshpeer.py Thu Aug 10 20:58:28 2017 -0700
@@ -13,7 +13,6 @@
from . import (
error,
pycompat,
- repository,
util,
wireproto,
)
@@ -115,7 +114,7 @@
def flush(self):
return self._main.flush()
-class sshpeer(wireproto.wirepeer, repository.legacypeer):
+class sshpeer(wireproto.wirepeer):
def __init__(self, ui, path, create=False):
self._url = path
self._ui = ui
@@ -151,9 +150,6 @@
self._validaterepo(sshcmd, args, remotecmd)
- # TODO remove this alias once peerrepository inheritance is removed.
- self._capabilities = self.capabilities
-
# Begin of _basepeer interface.
@util.propertycache