diff options
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/faqwiz/faqwiz.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/faqwiz/faqwiz.py b/Tools/faqwiz/faqwiz.py index 804e611..c2dbd00 100644 --- a/Tools/faqwiz/faqwiz.py +++ b/Tools/faqwiz/faqwiz.py @@ -42,7 +42,7 @@ def replace(s, old, new): def escape(s): s = replace(s, '&', '&') s = replace(s, '<', '<') - s = replace(s, '>', '>') + s = replace(s, '>', '>') return s def escapeq(s): |