mirror of https://github.com/searx/searx
Merge pull request #487 from misnyo/#485
[fix]#485 AttributeError: 'module' object has no attribute 'old_where'
This commit is contained in:
commit
46f2a4fab8
|
@ -52,6 +52,7 @@ logger = logging.getLogger('searx')
|
|||
# Workaround for openssl versions <1.0.2
|
||||
# https://github.com/certifi/python-certifi/issues/26
|
||||
if OPENSSL_VERSION_INFO[0:3] < (1, 0, 2):
|
||||
if hasattr(certifi, 'old_where'):
|
||||
environ['REQUESTS_CA_BUNDLE'] = certifi.old_where()
|
||||
logger.warning('You are using an old openssl version({0}), please upgrade above 1.0.2!'.format(OPENSSL_VERSION))
|
||||
|
||||
|
|
Loading…
Reference in New Issue