diff options
author | Scott Maxwell <scott@codecobblers.com> | 2013-11-19 07:30:45 -0800 |
---|---|---|
committer | Scott Maxwell <scott@codecobblers.com> | 2013-11-19 07:30:45 -0800 |
commit | 3ce336c88b7bfbfad03fab17bff8cb3c3a77176c (patch) | |
tree | 4ca12e253bc782025d756add21c755f3c336f07d /tests/test_pkey.py | |
parent | 01731fa2c34483ec6d429a23bf9d19126f63f618 (diff) |
Change conditional from PY3 to PY2 to be better prepared for a possible Py4.
Diffstat (limited to 'tests/test_pkey.py')
-rw-r--r-- | tests/test_pkey.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_pkey.py b/tests/test_pkey.py index f8549468..19c5c698 100644 --- a/tests/test_pkey.py +++ b/tests/test_pkey.py @@ -23,7 +23,7 @@ Some unit tests for public/private key objects. from binascii import hexlify, unhexlify import unittest from paramiko import RSAKey, DSSKey, ECDSAKey, Message, util -from paramiko.common import rng, StringIO, byte_chr, b, PY3, bytes +from paramiko.common import rng, StringIO, byte_chr, b, bytes from tests.util import test_path # from openssh's ssh-keygen |