logo

searx

My custom branche(s) on searx, a meta-search engine
commit: 06186e72a9cb9af89193880b41394cc9be5c5b35
parent: 001ec806c56e1270fe3263708543f7203b42e59b
Author: Adam Tauber <asciimoo@gmail.com>
Date:   Thu, 22 Jan 2015 17:20:44 +0100

[fix] poolrequest post method parameters

Diffstat:

Msearx/poolrequests.py4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/searx/poolrequests.py b/searx/poolrequests.py @@ -45,8 +45,8 @@ def head(url, **kwargs): return request('head', url, **kwargs) -def post(url, data=None, json=None, **kwargs): - return request('post', url, data=data, json=json, **kwargs) +def post(url, data=None, **kwargs): + return request('post', url, data=data, **kwargs) def put(url, data=None, **kwargs):