Comment 5 for bug 338759

Revision history for this message
Tanel Külaots (mou) wrote :

Seems like this bug is a result of http://bugs.python.org/issue5329
Python 2.6 does not accept sequence as argument for os.open2. Changing line 188 in rss2email.py from
i, o = os.popen2(["/usr/sbin/sendmail", recipient])
to
i, o = os.popen2("/usr/sbin/sendmail " + recipient)
fixed it for me.

Ubuntu Jaunty
rss2email.py version 2.62
python version 2.6.1