Luke Paireepinart wrote:
> Coen van der Kamp wrote:
>> Hello,
>> I've got a problem with the following code:
>>
>> import os, sys, string
>> mycolors = os.popen("coloryze --monochromatic --total=6
>> &").read().rstrip()
>> print mycolors
>>
>> This works fine on OS X, but when i tried it on XP the
Hello,
I've got a problem with the following code:
import os, sys, string
mycolors = os.popen("coloryze --monochromatic --total=6 &").read().rstrip()
print mycolors
This works fine on OS X, but when i tried it on XP the only result was
an empty string. When I run coloryze from the promt the retu
Coen van der Kamp wrote:
> Hello,
> I've got a problem with the following code:
>
> import os, sys, string
> mycolors = os.popen("coloryze --monochromatic --total=6 &").read().rstrip()
> print mycolors
>
> This works fine on OS X, but when i tried it on XP the only result was
> an empty string. Wh