From the python console this works:
convert -quality 100 in.pdf out.png
but when I add that command to my Python script like this:
Popen(['convert', '-quality 100', 'in.pdf', 'out.png'])
I get:
unrecognized option `-quality 100'
If I change that parameter to '-quality=100' I still get the error.
I tried fixing it like this:
Popen(['convert', '-quality', '100', 'in.pdf', 'out.png'])
which runs but fails to produce an out.png.
UPDATE: The last version is working. I must have mistyped it originally.