Explorar el Código

Add note about when connect_ssh was deprecated.

Jelmer Vernooij hace 8 años
padre
commit
9d9ad72563
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      dulwich/client.py

+ 1 - 0
dulwich/client.py

@@ -905,6 +905,7 @@ class SSHVendor(object):
     """A client side SSH implementation."""
 
     def connect_ssh(self, host, command, username=None, port=None):
+        # This function was deprecated in 0.9.1
         import warnings
         warnings.warn(
             "SSHVendor.connect_ssh has been renamed to SSHVendor.run_command",