completly -> completely (#3999) (closes bpo-31788)

This commit is contained in:
Semen Zhydenko 2017-10-15 21:28:31 +02:00 committed by Benjamin Peterson
parent 1b9e76ed3a
commit 1295e11d39
1 changed files with 1 additions and 1 deletions

View File

@ -2798,7 +2798,7 @@ _ssl__SSLContext_impl(PyTypeObject *type, int proto_version)
#endif
SSL_CTX_set_options(self->ctx, options);
/* A bare minimum cipher list without completly broken cipher suites.
/* A bare minimum cipher list without completely broken cipher suites.
* It's far from perfect but gives users a better head start. */
if (proto_version != PY_SSL_VERSION_SSL2) {
result = SSL_CTX_set_cipher_list(ctx, "HIGH:!aNULL:!eNULL:!MD5");