Add missing semicolon to '>'.

This commit is contained in:
Guido van Rossum 1997-08-14 20:17:20 +00:00
parent 4d3376a80f
commit 1dccdc221c
1 changed files with 1 additions and 1 deletions

View File

@ -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):