Try to get test_pep352 and maybe test_platform to work on a Windows buildbot

This commit is contained in:
Neal Norwitz 2007-08-30 06:16:26 +00:00
parent 09cff641b8
commit 78a70bd870
1 changed files with 1 additions and 1 deletions

View File

@ -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