Explorar el Código

[mod] useragent generation

Adam Tauber hace 11 años
padre
commit
8d40445ab8
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3
    1
      searx/utils.py

+ 3
- 1
searx/utils.py Ver fichero

@@ -7,7 +7,9 @@ import re
7 7
 from random import choice
8 8
 
9 9
 ua_versions = ('26.0', '27.0', '28.0')
10
-ua_os = ('Windows NT 6.3; WOW64', 'X11; Linux x86_64; rv:26.0')
10
+ua_os = ('Windows NT 6.3; WOW64',
11
+         'X11; Linux x86_64',
12
+         'X11; Linux x86')
11 13
 ua = "Mozilla/5.0 ({os}) Gecko/20100101 Firefox/{version}"
12 14
 
13 15