Changeset 1319
- Timestamp:
- 12/03/07 16:35:06 (12 months ago)
- Files:
-
- 1 modified
-
trunk/pylucid/PyLucid/system/tinyTextile.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pylucid/PyLucid/system/tinyTextile.py
r1301 r1319 28 28 __version__ = "$Rev$" 29 29 30 import sys, re, cgi 30 import sys, re 31 from PyLucid.tools.utils import escape 31 32 from PyLucid.system.response import SimpleStringIO 32 33 … … 153 154 154 155 def escaping(self, matchobj): 155 return cgi.escape(matchobj.group(1))156 return escape(matchobj.group(1)) 156 157 157 158 def shortcutLink(self, matchobj):
