Issue 1490176
Created on 2006-05-17 11:13 by tjwarren, last changed 2006-05-17 11:13 by tjwarren.
File name |
Uploaded |
Description |
Edit |
Remove |
templating.py.patch
|
tjwarren,
2006-05-17 11:13
|
patch for roundup/cgi/templating.py |
|
|
msg2255 |
Author: [hidden] (tjwarren) |
Date: 2006-05-17 11:13 |
|
While preparing another patch, I (or rather pychecker)
found a small bug in roundup/cgi/templating.py -- it
seems to just be an incorrectly named variable.
Index: roundup/cgi/templating.py
=======================================================
============
--- roundup/cgi/templating.py(revision 11)
+++ roundup/cgi/templating.py(working copy)
@@ -2476,7 +2476,7 @@
def html_quote(self, html):
'''HTML-quote the supplied text.'''
- return cgi.escape(url)
+ return cgi.escape(html)
def __getattr__(self, name):
'''Try the tracker's templating_utils.'''
|
|
Date |
User |
Action |
Args |
2006-05-17 11:13:00 | tjwarren | create | |
|