diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2018-09-17 17:08:56 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2018-09-17 17:12:43 -0700 |
commit | f09a0d3853ab7848ed8cd16148ce95ff58e09e8a (patch) | |
tree | 6a74d2a064766d8b65285f3ab96516b181c00493 /tests/test_client.py | |
parent | 74aa8f70b48a88a2a243e58293fac74049e542a7 (diff) |
Throwing a bone to 2.0-2.3 python-2.6 support
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 ddfb33fc..03b163fc 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -212,7 +212,7 @@ class SSHClientTest(unittest.TestCase): try: self._test_connection( key_filename=[ - _support("test_{}.key".format(x)) for x in attempt + _support("test_{0}.key".format(x)) for x in attempt ], allowed_keys=[types_[x] for x in accept], ) |