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_util.py | |
parent | 3afc76a6b4c4b06193cdb4837ca1df1f3428fb20 (diff) |
Fix imports
Diffstat (limited to 'tests/test_util.py')
-rw-r--r-- | tests/test_util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_util.py b/tests/test_util.py index 12677a9b..12575f84 100644 --- a/tests/test_util.py +++ b/tests/test_util.py @@ -21,15 +21,15 @@ Some unit tests for utility functions. """ from binascii import hexlify -import cStringIO import errno import os import unittest from Crypto.Hash import SHA import paramiko.util from paramiko.util import lookup_ssh_host_config as host_config +from paramiko.py3compat import StringIO, byte_ord -from util import ParamikoTest +from tests.util import ParamikoTest test_config_file = """\ Host * |