diff options
author | Scott Maxwell <scott@codecobblers.com> | 2013-10-30 16:19:30 -0700 |
---|---|---|
committer | Scott Maxwell <scott@codecobblers.com> | 2013-10-30 16:19:30 -0700 |
commit | 66cfa97cce92b1d60383d178887b18dddb999fc1 (patch) | |
tree | d4c70e30fb32d21a8b9f7cfcfbb62afbe1b5c067 /tests/stub_sftp.py | |
parent | 3afc76a6b4c4b06193cdb4837ca1df1f3428fb20 (diff) |
Fix imports
Diffstat (limited to 'tests/stub_sftp.py')
-rw-r--r-- | tests/stub_sftp.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/stub_sftp.py b/tests/stub_sftp.py index 3021d816..e5f44543 100644 --- a/tests/stub_sftp.py +++ b/tests/stub_sftp.py @@ -21,8 +21,10 @@ A stub SFTP server for loopback SFTP testing. """ import os +import sys from paramiko import ServerInterface, SFTPServerInterface, SFTPServer, SFTPAttributes, \ SFTPHandle, SFTP_OK, AUTH_SUCCESSFUL, OPEN_SUCCEEDED +from paramiko.common import * class StubServer (ServerInterface): |