From c14b56f37d1fdf17d39b5e934bcffca34374711e Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Tue, 13 Nov 2018 13:41:59 +0300 Subject: [PATCH] Fix file name for case-sensitive filesystems Phobos produces all-lowercase file --- scripts/jsonToSql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/jsonToSql.py b/scripts/jsonToSql.py index b9493372a..39e51d198 100755 --- a/scripts/jsonToSql.py +++ b/scripts/jsonToSql.py @@ -255,7 +255,7 @@ def main(db, json_path): eos.db.gamedata_session.add(instance) # quick and dirty hack to get this data in - with open(os.path.join(jsonPath, 'dynamicAttributes.json'), encoding='utf-8') as f: + with open(os.path.join(jsonPath, 'dynamicattributes.json'), encoding='utf-8') as f: bulkdata = json.load(f) for mutaID, data in bulkdata.items(): muta = eos.gamedata.DynamicItem()