quixote html.py,1.16,1.17
Neil Schemenauer <nascheme-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected]>
| Newsgroups | gmane.comp.web.quixote.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /home/cvs/quixote
In directory hewson:/tmp/cvs-serv20354
Modified Files:
html.py
Log Message:
Eak, fix quoting bug in href() function.
Index: html.py
===================================================================
RCS file: /home/cvs/quixote/html.py,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- html.py 18 Oct 2002 23:46:01 -0000 1.16
+++ html.py 21 Oct 2002 18:28:35 -0000 1.17
@@ -267,7 +267,7 @@
def href (url, text, title=None, **attrs):
return (htmltag("a", href=url, title=title, **attrs) +
- htmltext(text) +
+ htmlquote(text) +
htmltext("</a>"))