quixote html.py,1.17,1.18
Greg Ward <gward-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected]>
| Newsgroups | gmane.comp.web.quixote.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /home/cvs/quixote
In directory hewson:/tmp/cvs-serv20447
Modified Files:
html.py
Log Message:
It's htmlescape(), not htmlquote().
Index: html.py
===================================================================
RCS file: /home/cvs/quixote/html.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- html.py 21 Oct 2002 18:28:35 -0000 1.17
+++ html.py 21 Oct 2002 20:04:38 -0000 1.18
@@ -267,7 +267,7 @@
def href (url, text, title=None, **attrs):
return (htmltag("a", href=url, title=title, **attrs) +
- htmlquote(text) +
+ htmlescape(text) +
htmltext("</a>"))