proton: Handle errors in user_settings better
This commit is contained in:
parent
39d80d114c
commit
cf10d17310
1 changed files with 8 additions and 2 deletions
10
proton
10
proton
|
@ -99,8 +99,14 @@ env["WINEPREFIX"] = prefix
|
|||
|
||||
#load environment overrides
|
||||
if os.path.exists(basedir + "/user_settings.py"):
|
||||
import user_settings
|
||||
env.update(user_settings.user_settings)
|
||||
try:
|
||||
import user_settings
|
||||
env.update(user_settings.user_settings)
|
||||
except e:
|
||||
log("************************************************")
|
||||
log("THERE IS AN ERROR IN YOUR user_settings.py FILE:")
|
||||
log("%s" % sys.exc_info()[1])
|
||||
log("************************************************")
|
||||
|
||||
def check_environment(env_name, config_name):
|
||||
if not env_name in env:
|
||||
|
|
Loading…
Reference in a new issue