diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-12-18 11:30:24 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-12-18 11:30:24 -0800 |
commit | 8146a07caeb48cd3d0d0bb8c955ad866f9382249 (patch) | |
tree | 796cd579cb1bcab8a3beae218283d8ad779edda4 | |
parent | eb3e117d29aa2e16b6ca0ff206062d36474f8bfd (diff) |
Missing import and extra import. All things in balance
-rw-r--r-- | paramiko/util.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/paramiko/util.py b/paramiko/util.py index 4947a129..db5bd36e 100644 --- a/paramiko/util.py +++ b/paramiko/util.py @@ -22,7 +22,6 @@ Useful functions used by the rest of paramiko. from __future__ import generators -import array import errno import sys import struct @@ -31,7 +30,7 @@ import threading import logging from paramiko.common import DEBUG, zero_byte, xffffffff, max_byte -from paramiko.py3compat import PY2, long, byte_ord, b +from paramiko.py3compat import PY2, long, byte_chr, byte_ord, b from paramiko.config import SSHConfig |