diff options
author | Adam Tauber <asciimoo@gmail.com> | 2015-01-22 17:20:44 +0100 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2015-01-22 17:20:44 +0100 |
commit | 06186e72a9cb9af89193880b41394cc9be5c5b35 (patch) | |
tree | e95f3e8573b5dcfa39737e2693d0dd602b20ee64 /searx/poolrequests.py | |
parent | 001ec806c56e1270fe3263708543f7203b42e59b (diff) | |
download | searxng-06186e72a9cb9af89193880b41394cc9be5c5b35.tar.gz searxng-06186e72a9cb9af89193880b41394cc9be5c5b35.zip |
[fix] poolrequest post method parameters
Diffstat (limited to 'searx/poolrequests.py')
-rw-r--r-- | searx/poolrequests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/poolrequests.py b/searx/poolrequests.py index ef7a195f5..65853c2e9 100644 --- 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): |