diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2012-11-05 23:09:52 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2012-11-05 23:09:52 -0800 |
commit | 308c5f57d9a06e925001ca11df323a78d443d4b2 (patch) | |
tree | 32405b51426855395073e616df0aeec8c8488a01 | |
parent | 7a3cb790a6561f391be6118b75b9f74513820517 (diff) |
Add ProxyCommand classes to top level API
-rw-r--r-- | paramiko/__init__.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/paramiko/__init__.py b/paramiko/__init__.py index 8c158538..b79b4d7f 100644 --- a/paramiko/__init__.py +++ b/paramiko/__init__.py @@ -65,7 +65,7 @@ from auth_handler import AuthHandler from channel import Channel, ChannelFile from ssh_exception import SSHException, PasswordRequiredException, \ BadAuthenticationType, ChannelException, BadHostKeyException, \ - AuthenticationException + AuthenticationException, ProxyCommandFailure from server import ServerInterface, SubsystemHandler, InteractiveQuery from rsakey import RSAKey from dsskey import DSSKey @@ -83,6 +83,7 @@ from agent import Agent, AgentKey from pkey import PKey from hostkeys import HostKeys from config import SSHConfig +from proxy import ProxyCommand # fix module names for epydoc for c in locals().values(): @@ -119,6 +120,8 @@ __all__ = [ 'Transport', 'BadAuthenticationType', 'ChannelException', 'BadHostKeyException', + 'ProxyCommand', + 'ProxyCommandFailure', 'SFTP', 'SFTPFile', 'SFTPHandle', |