I used to be able to do a subprocess.call(["command","-option value -option value"])
and it would work there was a change to the command to work properly with things in quotes, but now I have to change my subprocess call command to look like this:
subprocess.call(["command","-option","value","-option","value"])
is there something I can do to get it to work the other way again in python?
the os.system("command -option value -option value")
works the same as it did before.