logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git
commit: cbdc1e1e76835270cb1d67b99b4caa385000498d
parent 2f4c2298ba94caf0242b5b6493c14a951cda3d08
Author: Martin Zimmermann <info@posativ.org>
Date:   Thu,  3 Jul 2014 22:05:52 +0200

fix gevent's monkey patch position

Diffstat:

Msearx/webapp.py6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/searx/webapp.py b/searx/webapp.py @@ -17,6 +17,9 @@ along with searx. If not, see < http://www.gnu.org/licenses/ >. (C) 2013- by Adam Tauber, <asciimoo@gmail.com> ''' +from gevent import monkey; monkey.patch_all() + + if __name__ == '__main__': from sys import path from os.path import realpath, dirname @@ -473,9 +476,6 @@ def favicon(): def run(): - from gevent import monkey - monkey.patch_all() - app.run( debug=settings['server']['debug'], use_debugger=settings['server']['debug'],