diff options
| author | Alexandre Flament <alex@al-f.net> | 2015-04-26 18:13:09 +0200 |
|---|---|---|
| committer | Alexandre Flament <alex@al-f.net> | 2015-04-26 18:13:09 +0200 |
| commit | 99efd790c8e24a9e7d1ab1220e1da96cdd0a8003 (patch) | |
| tree | 985537cb65dd5de4db8fdb419e9f7b0be71b3257 /searx/engines/stackoverflow.py | |
| parent | 2be52b74ad9e30474d553750d802199ee8cc4844 (diff) | |
engines: use https when possible
Diffstat (limited to 'searx/engines/stackoverflow.py')
| -rw-r--r-- | searx/engines/stackoverflow.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/stackoverflow.py b/searx/engines/stackoverflow.py index 78dba9f68..95ab58c54 100644 --- a/searx/engines/stackoverflow.py +++ b/searx/engines/stackoverflow.py @@ -19,7 +19,7 @@ categories = ['it'] paging = True # search-url -url = 'http://stackoverflow.com/' +url = 'https://stackoverflow.com/' search_url = url+'search?{query}&page={pageno}' # specific xpath variables |