Traceback (most recent call last): File "C:\scripts\getMeFi2.py", line 23, inposted by signal at 8:36 PM on July 15, 2008readline.add_history(e.title) File "C:\Python25\Lib\site-packages\pyreadline\rlmain.py", line 161, in add_history self._history.add_history(line) File "C:\Python25\Lib\site-packages\pyreadline\lineeditor\history.py", line 88, in add_history if not line.get_line_text(): AttributeError: 'unicode' object has no attribute 'get_line_text'
from pyreadline.lineeditor.lineobj import TextLine
readline.add_history(e.title) -to->
readline.add_history(TextLine(e.title))
posted by mathowie (staff) at 3:46 PM on July 15, 2008