diff options
author | Guido van Rossum <guido@python.org> | 1997-08-14 20:17:20 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-14 20:17:20 +0000 |
commit | 1dccdc221c7870309628defcd9d1d0d26692a781 (patch) | |
tree | d49cc3831e5c24f23beffeea0588189d37b6aa09 /Tools/faqwiz/faqwiz.py | |
parent | 4d3376a80fbd6cc9d5256904c5deead28d1bea31 (diff) | |
download | cpython-git-1dccdc221c7870309628defcd9d1d0d26692a781.tar.gz |
Add missing semicolon to '>'.
Diffstat (limited to 'Tools/faqwiz/faqwiz.py')
-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 804e6116bd..c2dbd00743 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): |