Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Unicode str work-around for doit
  • Loading branch information
da2x committed May 3, 2015
1 parent 6eeff35 commit 4e0f6c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dodo.py
Expand Up @@ -38,7 +38,7 @@ def set_nikola_test_locales():
lang = line.split('_')[0]
if lang not in languages:
try:
locale.setlocale(locale.LC_ALL, line)
locale.setlocale(locale.LC_ALL, str(line))
except:
continue
languages.add(lang)
Expand Down

0 comments on commit 4e0f6c5

Please sign in to comment.