mirror of
https://github.com/searxng/searxng.git
synced 2024-11-04 20:30:11 +01:00
Drop Python 2 (5/n): searx.utils.is_valid_lang, input parameter is a str instead of bytes
Fix bug in translated.py and dictzone.py
This commit is contained in:
parent
c225db45c8
commit
bdac99d4f0
@ -284,8 +284,10 @@ def int_or_zero(num):
|
||||
|
||||
|
||||
def is_valid_lang(lang):
|
||||
if isinstance(lang, bytes):
|
||||
lang = lang.decode()
|
||||
is_abbr = (len(lang) == 2)
|
||||
lang = lang.lower().decode()
|
||||
lang = lang.lower()
|
||||
if is_abbr:
|
||||
for l in language_codes:
|
||||
if l[0][:2] == lang:
|
||||
|
Loading…
Reference in New Issue
Block a user