diff options
| author | Dalf <alex@al-f.net> | 2014-09-07 18:42:56 +0200 |
|---|---|---|
| committer | Dalf <alex@al-f.net> | 2014-09-07 18:42:56 +0200 |
| commit | a4ffeddce1bc56b0faa548e0485ccd6374c4e9d1 (patch) | |
| tree | a7cb02ab1e19e0f7304b884d88cf838d5a184d1c /searx/engines | |
| parent | a92e3ba4464853eeb44ed77661b763e75f619e5e (diff) | |
[fix] yahoo engines: parse_url doesn't throw an exception with not tracking URL
Diffstat (limited to 'searx/engines')
| -rw-r--r-- | searx/engines/yahoo.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/searx/engines/yahoo.py b/searx/engines/yahoo.py index 3d048186d..5e34a2b07 100644 --- a/searx/engines/yahoo.py +++ b/searx/engines/yahoo.py @@ -40,9 +40,11 @@ def parse_url(url_string): if endpos > -1: endpositions.append(endpos) - end = min(endpositions) - - return unquote(url_string[start:end]) + if start==0 or len(endpositions) == 0: + return url_string + else: + end = min(endpositions) + return unquote(url_string[start:end]) # do search-request |