I am trying to open applications using python. At the moment, this is what I have got:
os.system("open " + "/Applications/" + app + ".app")
('app' is a string with an appname, changes throughout the script)
Now, my problem is that this works flawlessly when I try to open apps with a single word for their name. Like "Blender" or "Brackets". However, if I try to open apps like photoshop (which in the applications folder are named "Adobe Photoshop CS6") nothing happens. I have been trying for several hours now, went through a lot of questions, many of them talking about adding an 'r' before the string. I have tried this before every part of my string, and also tried to encapsulate it all between quotes but nothing helps.
Why is this even an issue?