Skip to content

Commit

Permalink
fix for latest flake8 (pyca#3829)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex authored and reaperhulk committed Aug 3, 2017
1 parent 629a27e commit 95949b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cryptography/hazmat/backends/openssl/encode_asn1.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def _encode_name(backend, name):
name_entry, backend._lib.X509_NAME_ENTRY_free
)
res = backend._lib.X509_NAME_add_entry(
subject, name_entry, -1, set_flag)
subject, name_entry, -1, set_flag)
backend.openssl_assert(res == 1)
set_flag = -1
return subject
Expand Down

0 comments on commit 95949b7

Please sign in to comment.