Skip to content

Commit

Permalink
Merge pull request #61 from corrad1nho/develop
Browse files Browse the repository at this point in the history
fixed wrong variable for script execution
  • Loading branch information
corrad1nho authored Jan 5, 2019
2 parents 4446ccc + 2c35f29 commit 2fbc416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qomui/tunnel.py
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ def exe_custom_scripts(stage, provider, config):
script = config["{}_scripts".format(provider)][stage]

try:
run(shlex.split(cmd))
run(shlex.split(script))
logging.info("Executed {}".format(script))
#self.log.emit(("info", "Executed {}".format(script)))

Expand Down

0 comments on commit 2fbc416

Please sign in to comment.