Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save foursixnine/c23a33eaa4c6bd87098a2c6bd2c2446a to your computer and use it in GitHub Desktop.
Save foursixnine/c23a33eaa4c6bd87098a2c6bd2c2446a to your computer and use it in GitHub Desktop.
# works
_cmd = "/home/foursixnine/Projects/suse.com/github.com/os-autoinst/openQA/script/client --host %s"
_cmd += " --apibase / --apikey %s --apisecret %s"
_cmd += " tests/%d/file/autoinst-log.txt get"
this_process = subprocess.run(_args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
_output = this_process.stdout
# doesnt:
_cmd = "/home/foursixnine/Projects/suse.com/github.com/os-autoinst/openQA/script/client --host %s "
_cmd += " --apibase / --apikey %s --apisecret %s"
_cmd += " tests/%d/file/autoinst-log.txt get"
this_process = subprocess.run(_args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
_output = this_process.stdout
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment