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