Browse Source

Rawr.

tags/v1.0^2
Ben Kurtovic 10 years ago
parent
commit
024f0c7afb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      bitshift/languages.py

+ 1
- 1
bitshift/languages.py View File

@@ -2,4 +2,4 @@ import json
from os import path

with open(path.join(path.dirname(__file__), "languages.json")) as lang_json:
LANGS = [str(lang) for lang in json.load(lang_json)["languages"]]
LANGS = [lang.encode("utf8") for lang in json.load(lang_json)["languages"]]

Loading…
Cancel
Save