[fix] language query string comparison

This commit is contained in:
asciimoo 2014-02-09 11:35:52 +01:00
parent 9b4d60972a
commit 9ede9b955d
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class Search(object):
query_parts = self.query.split()
modified = False
if query_parts[0].startswith(':'):
lang = query_parts[0][1:]
lang = query_parts[0][1:].lower()
for lc in language_codes:
lang_id, lang_name, country = map(str.lower, lc)