소스 검색

[fix] pep8

Adam Tauber 11 년 전
부모
커밋
693415c787
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1
    0
      searx/utils.py

+ 1
- 0
searx/utils.py 파일 보기

@@ -10,6 +10,7 @@ ua_versions = ('26.0', '27.0', '28.0')
10 10
 ua_os = ('Windows NT 6.3; WOW64', 'X11; Linux x86_64; rv:26.0')
11 11
 ua = "Mozilla/5.0 ({os}) Gecko/20100101 Firefox/{version}"
12 12
 
13
+
13 14
 def gen_useragent():
14 15
     # TODO
15 16
     return ua.format(os=choice(ua_os), version=choice(ua_versions))