Remove unused variable

Reviewed-By: Felipe Volpone <fbarreto@redhat.com>
This commit is contained in:
Stanislav Laznicka
2017-08-31 16:41:05 +02:00
committed by Tomas Krizek
parent 79378c9051
commit c14aa6cdac

View File

@@ -131,7 +131,7 @@ NCONF_get_string = _libcrypto.NCONF_get_string
try: try:
sk_num = _libcrypto.OPENSSL_sk_num sk_num = _libcrypto.OPENSSL_sk_num
sk_value = _libcrypto.OPENSSL_sk_value sk_value = _libcrypto.OPENSSL_sk_value
except AttributeError as e: except AttributeError:
sk_num = _libcrypto.sk_num sk_num = _libcrypto.sk_num
sk_value = _libcrypto.sk_value sk_value = _libcrypto.sk_value