소스 검색

Add note about when connect_ssh was deprecated.

Jelmer Vernooij 8 년 전
부모
커밋
9d9ad72563
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  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",