Kaydet (Commit) 1dccdc22 authored tarafından Guido van Rossum's avatar Guido van Rossum

Add missing semicolon to '>'.

üst 4d3376a8
...@@ -42,7 +42,7 @@ def replace(s, old, new): ...@@ -42,7 +42,7 @@ def replace(s, old, new):
def escape(s): def escape(s):
s = replace(s, '&', '&') s = replace(s, '&', '&')
s = replace(s, '<', '&lt;') s = replace(s, '<', '&lt;')
s = replace(s, '>', '&gt') s = replace(s, '>', '&gt;')
return s return s
def escapeq(s): def escapeq(s):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment