summaryrefslogtreecommitdiff
path: root/tests/test_agent.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2023-01-09 22:47:21 -0500
committerJeff Forcier <jeff@bitprophet.org>2023-01-09 23:26:00 -0500
commit9e83ca9d8acb5e9d41d45d46a0339e2f633e2dea (patch)
tree6cb926091b66800f98e75bff931db836bda7a4be /tests/test_agent.py
parent7b8106e67c51e71fc4074f7851bbaebed4d5be0c (diff)
downloadparamiko-9e83ca9d8acb5e9d41d45d46a0339e2f633e2dea.tar.gz
Move b, u helpers to util module for now
Later on we can likely nuke many uses of these
Diffstat (limited to 'tests/test_agent.py')
-rw-r--r--tests/test_agent.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_agent.py b/tests/test_agent.py
index c3973bbb..01602d0e 100644
--- a/tests/test_agent.py
+++ b/tests/test_agent.py
@@ -8,7 +8,7 @@ from paramiko.agent import (
SSH_AGENT_RSA_SHA2_512,
AgentKey,
)
-from paramiko.py3compat import b
+from paramiko.util import b
class ChaosAgent: