summaryrefslogtreecommitdiff
path: root/searx/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'searx/utils.py')
-rw-r--r--searx/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/utils.py b/searx/utils.py
index 3b2e39919..bd6c3fe2f 100644
--- a/searx/utils.py
+++ b/searx/utils.py
@@ -59,9 +59,9 @@ blocked_tags = ('script',
'style')
-def gen_useragent():
+def gen_useragent(os=None):
# TODO
- return ua.format(os=choice(ua_os), version=choice(ua_versions))
+ return ua.format(os=os or choice(ua_os), version=choice(ua_versions))
def searx_useragent():