[issue7440] distutils shows incorrect Python version in MSI installers

Mario Vilas report at bugs.python.org
Sat Dec 5 08:51:19 CET 2009


Mario Vilas <mvilas at gmail.com> added the comment:

My proposed patch is to change line 506 of bdist_msi.py from this:

        version = sys.version[:3]+" "

to this:

        version = self.target_version[:3]+" "

which is what I did to work around the problem.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue7440>
_______________________________________


More information about the Python-bugs-list mailing list