summaryrefslogtreecommitdiffstats
path: root/Lib/xml/__init__.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2001-03-27 21:38:15 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2001-03-27 21:38:15 (GMT)
commit764dad5b13a2a7018ad4e366cdd5aaf09bec6265 (patch)
treeb575325556a192c89d4fcb7ed7ffb95f4a659ad1 /Lib/xml/__init__.py
parentff4e62dbde02a25d9a10cd16de61ed145323e5d2 (diff)
downloadcpython-764dad5b13a2a7018ad4e366cdd5aaf09bec6265.zip
cpython-764dad5b13a2a7018ad4e366cdd5aaf09bec6265.tar.gz
cpython-764dad5b13a2a7018ad4e366cdd5aaf09bec6265.tar.bz2
Arghh. Fix typo.
Diffstat (limited to 'Lib/xml/__init__.py')
-rw-r--r--Lib/xml/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/xml/__init__.py b/Lib/xml/__init__.py
index 7245b7e..d189823 100644
--- a/Lib/xml/__init__.py
+++ b/Lib/xml/__init__.py
@@ -18,7 +18,7 @@ __all__ = ["dom", "parsers", "sax"]
# When being checked-out without options, this has the form
# "<dollar>Revision: x.y </dollar>"
# When exported using -kv, it is "x.y".
-__version__ = "$Revision$".split()[-2][0]
+__version__ = "$Revision$".split()[-2:][0]
_MINIMUM_XMLPLUS_VERSION = (0, 6, 1)