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
try:
command_line = 'python3 runwebsockify.py ' + a_options + vnctarget command_line = 'python3 runwebsockify.py ' + a_options + vnctarget
args = shlex.split(command_line) args = shlex.split(command_line)
p = subprocess.Popen(args) p = subprocess.Popen(args)
print('spawn!') print('spawned!')
:w