Fix incorrect default config file name.
parent
3351dc71da
commit
86522638a4
|
|
@ -3,7 +3,7 @@
|
||||||
import json
|
import json
|
||||||
|
|
||||||
class BuildConfig:
|
class BuildConfig:
|
||||||
def __init__(self, config_file='config.json'):
|
def __init__(self, config_file='build_config.json'):
|
||||||
with open(config_file, 'r') as f:
|
with open(config_file, 'r') as f:
|
||||||
config_data = json.load(f)
|
config_data = json.load(f)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue