summaryrefslogtreecommitdiffstats
path: root/Tools/faqwiz
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-08-14 20:17:20 (GMT)
committerGuido van Rossum <guido@python.org>1997-08-14 20:17:20 (GMT)
commit1dccdc221c7870309628defcd9d1d0d26692a781 (patch)
treed49cc3831e5c24f23beffeea0588189d37b6aa09 /Tools/faqwiz
parent4d3376a80fbd6cc9d5256904c5deead28d1bea31 (diff)
downloadcpython-1dccdc221c7870309628defcd9d1d0d26692a781.zip
cpython-1dccdc221c7870309628defcd9d1d0d26692a781.tar.gz
cpython-1dccdc221c7870309628defcd9d1d0d26692a781.tar.bz2
Add missing semicolon to '&gt;'.
Diffstat (limited to 'Tools/faqwiz')
-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, '&', '&amp;')
s = replace(s, '<', '&lt;')
- s = replace(s, '>', '&gt')
+ s = replace(s, '>', '&gt;')
return s
def escapeq(s):