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/test_sftp.py | |
parent | 3afc76a6b4c4b06193cdb4837ca1df1f3428fb20 (diff) |
Fix imports
Diffstat (limited to 'tests/test_sftp.py')
-rwxr-xr-x | tests/test_sftp.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/test_sftp.py b/tests/test_sftp.py index cc512c18..3c1fcd52 100755 --- a/tests/test_sftp.py +++ b/tests/test_sftp.py @@ -31,11 +31,12 @@ import warnings import sys import threading import unittest -import StringIO import paramiko -from stub_sftp import StubServer, StubSFTPServer -from loop import LoopSocket +from paramiko.common import * +from tests.stub_sftp import StubServer, StubSFTPServer +from tests.loop import LoopSocket +from tests.util import test_path from paramiko.sftp_attr import SFTPAttributes ARTICLE = ''' |