[Python-checkins] commit of r41490 - python/branches/release24-maint/Lib

walter.doerwald@python.org walter.doerwald at python.org
Mon Nov 21 18:01:49 CET 2005


Author: walter.doerwald
Date: Mon Nov 21 18:01:49 2005
New Revision: 41490

Modified:
   python/branches/release24-maint/Lib/platform.py
Log:
Backport r41489:
Fix typo.


Modified: python/branches/release24-maint/Lib/platform.py
==============================================================================
--- python/branches/release24-maint/Lib/platform.py	(original)
+++ python/branches/release24-maint/Lib/platform.py	Mon Nov 21 18:01:49 2005
@@ -354,7 +354,7 @@
 def _norm_version(version,build=''):
 
     """ Normalize the version and build strings and return a single
-        vesion string using the format major.minor.build (or patchlevel).
+        version string using the format major.minor.build (or patchlevel).
     """
     l = string.split(version,'.')
     if build:


More information about the Python-checkins mailing list