This commit is contained in:
deflax 2016-02-15 12:53:56 +02:00
parent 456cc668c9
commit eec9408a4b

View file

@ -18,9 +18,11 @@ def spawn(target, options):
c_option = '--{} {} '.format(key, value) c_option = '--{} {} '.format(key, value)
a_options += c_option a_options += c_option
command_line = 'python3 runwebsockify.py ' + a_options + vnctarget try:
args = shlex.split(command_line) command_line = 'python3 runwebsockify.py ' + a_options + vnctarget
p = subprocess.Popen(args) args = shlex.split(command_line)
print('spawn!') p = subprocess.Popen(args)
print('spawned!')
:w