From 78a70bd870e8f047f9e2aee37047266e658fab8f Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Thu, 30 Aug 2007 06:16:26 +0000 Subject: Try to get test_pep352 and maybe test_platform to work on a Windows buildbot --- Lib/platform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/platform.py') diff --git a/Lib/platform.py b/Lib/platform.py index 7b4258ffed..2e417d9f0c 100755 --- a/Lib/platform.py +++ b/Lib/platform.py @@ -459,7 +459,7 @@ def _norm_version(version, build=''): except ValueError: strings = l else: - strings = map(str,ints) + strings = list(map(str,ints)) version = '.'.join(strings[:3]) return version -- cgit v1.2.1