Re: [Tutor] os.popen, xp

2006-11-19 Thread Coen van der Kamp
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

[Tutor] os.popen, xp

2006-11-18 Thread Coen van der Kamp
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

Re: [Tutor] os.popen, xp

2006-11-18 Thread Luke Paireepinart
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