Commit 1402ab2c authored by Fred Drake's avatar Fred Drake

Use the string module instead of string methods; this should still work

with Python 1.5.2 for now.
parent 51001336
......@@ -15,7 +15,9 @@ sax -- The Simple API for XML, developed by XML-Dev, led by David
__all__ = ["dom", "parsers", "sax"]
__version__ = "$Revision$"[1:-1].split()[1]
import string
__version__ = string.split("$Revision$")[1]
del string
_MINIMUM_XMLPLUS_VERSION = (0, 6, 1)
......
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