Fix printing of SSL version error

Fixes #73
This commit is contained in:
Aldo Cortesi 2015-06-25 10:37:01 +12:00
parent db6576ca6f
commit 41925b01f7
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ def version_check(
if v < pyopenssl_min_version:
print(
"You are using an outdated version of pyOpenSSL:"
" mitmproxy requires pyOpenSSL %x or greater." %
" mitmproxy requires pyOpenSSL %s or greater." %
pyopenssl_min_version,
file=fp
)