Specify that the popen4 is text and not binary.
Fri Aug 26 14:32:13 UTC 2005 Alberto Bertogli <albertogli@telpin.com.ar>
* Specify that the popen4 is text and not binary.
popen4 call takes a mode parameter that should specify if the fds are text or
binary. Thanks to Gordon Heydon for reporting it.
hunk ./darcsweb.cgi 344
- inf, outf = os.popen4(cmd, 'r')
+ inf, outf = os.popen4(cmd, 't')