diff options
author | Alex <alex@al-f.net> | 2018-08-05 10:55:42 +0200 |
---|---|---|
committer | Alex <alex@al-f.net> | 2018-08-05 10:55:42 +0200 |
commit | 50c836864a9a7a765561d886b11f44d8cea0bce9 (patch) | |
tree | 2075a7d35a02836c5f9909c48fbd2e11897e16c7 /searx/utils.py | |
parent | 066bd916bf0c0344c978d2ea46cf9e9960841a61 (diff) | |
download | searxng-50c836864a9a7a765561d886b11f44d8cea0bce9.tar.gz searxng-50c836864a9a7a765561d886b11f44d8cea0bce9.zip |
fetch_firefox_version.py : compatible with Python 3 and minor fixes.
Diffstat (limited to 'searx/utils.py')
-rw-r--r-- | searx/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/utils.py b/searx/utils.py index f457284e3..dfa22c5fc 100644 --- a/searx/utils.py +++ b/searx/utils.py @@ -54,8 +54,8 @@ def searx_useragent(): suffix=settings['outgoing'].get('useragent_suffix', '')) -def gen_useragent(): - return str(useragents['ua'].format(os=choice(useragents['os']), version=choice(useragents['versions']))) +def gen_useragent(os=None): + return str(useragents['ua'].format(os=os or choice(useragents['os']), version=choice(useragents['versions']))) def highlight_content(content, query): |