commit | 764dad5b13a2a7018ad4e366cdd5aaf09bec6265 | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Tue Mar 27 21:38:15 2001 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Tue Mar 27 21:38:15 2001 +0000 |
tree | b575325556a192c89d4fcb7ed7ffb95f4a659ad1 | |
parent | ff4e62dbde02a25d9a10cd16de61ed145323e5d2 [diff] |
Arghh. Fix typo.
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 @@ # 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)