[pybot-commits] CVS: pybot/pybot/modules rss.py,1.8,1.9
Brought to you by:
niemeyer
From: Gustavo N. <nie...@us...> - 2003-08-26 21:37:39
|
Update of /cvsroot/pybot/pybot/pybot/modules In directory sc8-pr-cvs1:/tmp/cvs-serv6039/pybot/modules Modified Files: rss.py Log Message: Changed chars enclosing the link. Index: rss.py =================================================================== RCS file: /cvsroot/pybot/pybot/pybot/modules/rss.py,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** rss.py 26 Aug 2003 21:02:44 -0000 1.8 --- rss.py 26 Aug 2003 21:27:41 -0000 1.9 *************** *** 151,155 **** text = item.title if "l" in target.flags and item.link: ! text += " [%s]" % item.link if "d" in target.flags and item["description"]: # item.description() is a method --- 151,155 ---- text = item.title if "l" in target.flags and item.link: ! text += " <%s>" % item.link if "d" in target.flags and item["description"]: # item.description() is a method |