diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2013-12-24 22:29:12 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2013-12-24 22:29:12 -0600 |
commit | 0cbcfa67fc7c1e13764f4b662fc238a372507af8 (patch) | |
tree | eb5d5057ad174087269bf361865a07169a730a3a /tests | |
parent | 7e4bc6d87741e8469ffcd00dc8004875ec9a95fe (diff) | |
download | cryptography-0cbcfa67fc7c1e13764f4b662fc238a372507af8.tar.gz cryptography-0cbcfa67fc7c1e13764f4b662fc238a372507af8.tar.bz2 cryptography-0cbcfa67fc7c1e13764f4b662fc238a372507af8.zip |
whoops, python 2.6 compatible format string
Diffstat (limited to 'tests')
-rw-r--r-- | tests/skip_check.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/skip_check.py b/tests/skip_check.py index 4d454d73..454a3c5f 100644 --- a/tests/skip_check.py +++ b/tests/skip_check.py @@ -19,4 +19,4 @@ import pytest def skip_check(name, iface, item): if name in item.keywords and item.funcargs.get('backend') is not None: if not isinstance(item.funcargs['backend'], iface): - pytest.skip("Backend does not support {}".format(name)) + pytest.skip("Backend does not support {0}".format(name)) |