From 181c12ae04bac694a1a5534777bc91aa9ed8f89a Mon Sep 17 00:00:00 2001 From: Alexandre Flament Date: Thu, 23 Mar 2017 15:33:18 +0100 Subject: [mod] upgrade requirements.txt --- searx/webapp.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'searx/webapp.py') diff --git a/searx/webapp.py b/searx/webapp.py index 8124d5775..2aba4556d 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -70,14 +70,12 @@ from searx.plugins import plugins from searx.preferences import Preferences, ValidationException from searx.answerers import answerers -# check if the pyopenssl, ndg-httpsclient, pyasn1 packages are installed. -# They are needed for SSL connection without trouble, see #298 +# check if the pyopenssl package is installed. +# It is needed for SSL connection without trouble, see #298 try: import OpenSSL.SSL # NOQA - import ndg.httpsclient # NOQA - import pyasn1 # NOQA except ImportError: - logger.critical("The pyopenssl, ndg-httpsclient, pyasn1 packages have to be installed.\n" + logger.critical("The pyopenssl package has to be installed.\n" "Some HTTPS connections will fail") # serve pages with HTTP/1.1 -- cgit v1.2.3