Merge branch 'fix-621' into develop

This commit is contained in:
Kim Silkebækken 2013-08-20 13:30:22 +02:00
commit d67e929fec
1 changed files with 2 additions and 1 deletions

View File

@ -8,10 +8,11 @@ from threading import Event, Lock
from collections import defaultdict
import json
import codecs
def open_file(path):
return open(path, 'r')
return codecs.open(path, encoding='utf-8')
def load_json_config(config_file_path, load=json.load, open_file=open_file):