I would like to run a workspace using python and the code I have is simple, but it's not working. Is there something wrong with my python code or could it be something else?
import subprocess
args = [r"C:\Program Files\FME\fme.exe", "C:\ProgramData\Geocortex\Workflow\FMEScripts\testEmailer.fmw"]
subprocess.Popen(args)