summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
Diffstat (limited to 'Tools')
-rw-r--r--Tools/faqwiz/faqwiz.py2
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, '<', '&lt;')
- s = replace(s, '>', '&gt')
+ s = replace(s, '>', '&gt;')
return s
def escapeq(s):