fix bug under py3

This commit is contained in:
破娃酱 2017-01-21 12:43:22 +08:00
parent 7cfbe49806
commit 68693d5ec7

View file

@ -278,7 +278,7 @@ class DbTransfer(TransferBase):
import json
config_path = get_config().MYSQL_CONFIG
cfg = None
with open(config_path, 'r+') as f:
with open(config_path, 'rb+') as f:
cfg = json.loads(f.read().decode('utf8'))
if cfg: