Reputation: 1269
I am currently debugging a cmd run with Popen
.
It looks like:
cmd = ['test', 'arg1', 'arg2']
Popen(cmd)
test
is a python script and I have multiple on my computer. How do I tell which test
is getting picked up when I call Popen()
?
Upvotes: 1
Views: 35