From: Martin v. Löwis Date: Tue, 27 Mar 2001 21:38:15 +0000 (+0000) Subject: Arghh. Fix typo. X-Git-Tag: v2.1c1~223 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=764dad5b13a2a7018ad4e366cdd5aaf09bec6265;p=thirdparty%2FPython%2Fcpython.git Arghh. Fix typo. --- diff --git a/Lib/xml/__init__.py b/Lib/xml/__init__.py index 7245b7e2c9cc..d189823620d8 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 # "Revision: x.y " # When exported using -kv, it is "x.y". -__version__ = "$Revision$".split()[-2][0] +__version__ = "$Revision$".split()[-2:][0] _MINIMUM_XMLPLUS_VERSION = (0, 6, 1)