Merge pull request #707 from kay0u/config_panel

[FIX] Config Panel
This commit is contained in:
Alexandre Aubin 2019-04-16 17:29:55 +02:00 committed by GitHub
commit 5a2708b7cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1629,7 +1629,7 @@ def app_config_show_panel(app):
args=["show"],
env=env,
stdout_callback=parse_stdout,
)
)[0]
if return_code != 0:
raise Exception("script/config show return value code: %s (considered as an error)", return_code)
@ -1715,7 +1715,7 @@ def app_config_apply(app, args):
return_code = hook_exec(config_script,
args=["apply"],
env=env,
)
)[0]
if return_code != 0:
raise Exception("'script/config apply' return value code: %s (considered as an error)", return_code)