Skip to content

Commit

Permalink
Update global_config.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tonquer committed May 26, 2024
1 parent ed2c60a commit 1fc3e94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/global_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def LoadSetting():
try:
for k, v in dict(Setting.GlobalConfig.value).items():
Log.Debug("load global setting, k={}, v={}".format(k, v))
value = getattr(GlobalConfig, k)
value = getattr(GlobalConfig, k, "")
if isinstance(value, GlobalItem) :
value.set_value(v)
except Exception as es:
Expand Down

0 comments on commit 1fc3e94

Please sign in to comment.