Fix incorrect default config file name.

master
Beq 2024-09-16 10:26:40 +01:00
parent 3351dc71da
commit 86522638a4
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
import json
class BuildConfig:
def __init__(self, config_file='config.json'):
def __init__(self, config_file='build_config.json'):
with open(config_file, 'r') as f:
config_data = json.load(f)