diff options
author | Walter Dörwald <walter@livinglogic.de> | 2004-11-25 12:23:23 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2004-11-25 12:23:23 (GMT) |
commit | f7f9b6cb2df7a933f687622044a86cd49a7d9f9b (patch) | |
tree | 9672a21bafa447a05b6dc2377c1639f11cdae7ae /Lib/xml | |
parent | 4fd38b3f773172e5d4454093e4af51671a13395b (diff) | |
download | cpython-f7f9b6cb2df7a933f687622044a86cd49a7d9f9b.zip cpython-f7f9b6cb2df7a933f687622044a86cd49a7d9f9b.tar.gz cpython-f7f9b6cb2df7a933f687622044a86cd49a7d9f9b.tar.bz2 |
Fix typo in comment.
Diffstat (limited to 'Lib/xml')
-rw-r--r-- | Lib/xml/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/xml/__init__.py b/Lib/xml/__init__.py index e5f28b0..827439f 100644 --- a/Lib/xml/__init__.py +++ b/Lib/xml/__init__.py @@ -32,7 +32,7 @@ else: try: v = _xmlplus.version_info except AttributeError: - # _xmlplue is too old; ignore it + # _xmlplus is too old; ignore it pass else: if v >= _MINIMUM_XMLPLUS_VERSION: |