diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2015-11-03 17:05:01 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2015-11-03 17:05:01 -0800 |
commit | 956de60d53f0f9ed2f6b583ccefe88162665235c (patch) | |
tree | 00fade06b43510d22721919297ee1c379803c416 /tests/test_client.py | |
parent | dae916f7bd6723cee95891778baff51ef45532ee (diff) | |
parent | b0435808802cf435fd2865b7b8af2326064df82c (diff) |
Merge branch 'master' into 467-int
Diffstat (limited to 'tests/test_client.py')
-rw-r--r-- | tests/test_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_client.py b/tests/test_client.py index 3d2e75c9..04cab439 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -75,7 +75,7 @@ class NullServer (paramiko.ServerInterface): return paramiko.OPEN_SUCCEEDED def check_channel_exec_request(self, channel, command): - if command != 'yes': + if command != b'yes': return False return True |