diff options
author | Walter Dörwald <walter@livinglogic.de> | 2005-11-21 17:01:49 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2005-11-21 17:01:49 (GMT) |
commit | eef12af393f24f24d2c2586b5ab3e63d9f210c15 (patch) | |
tree | 18b96713f7a57a66795a28140b4e517bfd4fa339 /Lib/platform.py | |
parent | 9aab3f04a8c20ec81048999333ade59d08b28f19 (diff) | |
download | cpython-eef12af393f24f24d2c2586b5ab3e63d9f210c15.zip cpython-eef12af393f24f24d2c2586b5ab3e63d9f210c15.tar.gz cpython-eef12af393f24f24d2c2586b5ab3e63d9f210c15.tar.bz2 |
Backport r41489:
Fix typo.
Diffstat (limited to 'Lib/platform.py')
-rwxr-xr-x | Lib/platform.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/platform.py b/Lib/platform.py index 372fe92..25b946a 100755 --- a/Lib/platform.py +++ b/Lib/platform.py @@ -354,7 +354,7 @@ def popen(cmd, mode='r', bufsize=None): 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: |