logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git
commit: cd1374d2f2859005743e31eb7cff154fe4dd2fc4
parent a305dae9d88fe3c37ef18e4ce5cbe75f07c40a45
Author: rinpatch <rinpatch@airmail.cc>
Date:   Sun, 22 Apr 2018 14:12:32 +0300

added whitespaces

Diffstat:

Msearx/engines/currency_convert.py3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/searx/engines/currency_convert.py b/searx/engines/currency_convert.py @@ -44,7 +44,6 @@ def request(query, params): if not m: # wrong query return params - amount, from_currency, to_currency = m.groups() amount = float(amount) from_currency = name_to_iso4217(from_currency.strip()) @@ -64,7 +63,7 @@ def request(query, params): def response(resp): """remove first and last lines to get only json""" - json_resp = resp.text[resp.text.find('\n')+1:resp.text.rfind('\n')-2] + json_resp = resp.text[resp.text.find('\n') + 1:resp.text.rfind('\n') - 2] results = [] try: conversion_rate = float(json.loads(json_resp)['conversion']['converted-amount'])