diff options
author | Fred Drake <fdrake@acm.org> | 2001-03-23 16:38:12 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-03-23 16:38:12 (GMT) |
commit | a4699a71b89fb3965f4c7b4aefb7ebf722494df2 (patch) | |
tree | 6c289de3439c42ffccca4e45c95e6b956de94fa9 /Doc/tools/sgmlconv | |
parent | ce19496ec1264b330aa76f3e4366d2ff3dab2548 (diff) | |
download | cpython-a4699a71b89fb3965f4c7b4aefb7ebf722494df2.zip cpython-a4699a71b89fb3965f4c7b4aefb7ebf722494df2.tar.gz cpython-a4699a71b89fb3965f4c7b4aefb7ebf722494df2.tar.bz2 |
Pick the "escape" function from the standard library instead of from PyXML.
Diffstat (limited to 'Doc/tools/sgmlconv')
-rwxr-xr-x | Doc/tools/sgmlconv/esis2sgml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tools/sgmlconv/esis2sgml.py b/Doc/tools/sgmlconv/esis2sgml.py index adb8873..a8abacd 100755 --- a/Doc/tools/sgmlconv/esis2sgml.py +++ b/Doc/tools/sgmlconv/esis2sgml.py @@ -17,7 +17,7 @@ import os import re import string -from xml.utils import escape +from xml.sax.saxutils import escape AUTOCLOSE = () |