diff options
author | Éric Araujo <merwok@netwok.org> | 2012-03-05 15:09:29 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2012-03-05 15:09:29 (GMT) |
commit | e413c06f35ba4c58f7b6e8aa6984131e94672831 (patch) | |
tree | c1e9e1426e7cd2dbc3ea9826ad0926681ca754ff /Lib/distutils/command/bdist_msi.py | |
parent | e5eec7e19898d872147ae55f65676c2f30b9461a (diff) | |
download | cpython-e413c06f35ba4c58f7b6e8aa6984131e94672831.zip cpython-e413c06f35ba4c58f7b6e8aa6984131e94672831.tar.gz cpython-e413c06f35ba4c58f7b6e8aa6984131e94672831.tar.bz2 |
Make distutils’ upload command work with bdist_msi products (#13719).
Patch by Ralf Schmitt.
Diffstat (limited to 'Lib/distutils/command/bdist_msi.py')
-rw-r--r-- | Lib/distutils/command/bdist_msi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/bdist_msi.py b/Lib/distutils/command/bdist_msi.py index b3cfe9c..fde0f63 100644 --- a/Lib/distutils/command/bdist_msi.py +++ b/Lib/distutils/command/bdist_msi.py @@ -260,7 +260,7 @@ class bdist_msi(Command): self.db.Commit() if hasattr(self.distribution, 'dist_files'): - tup = 'bdist_msi', self.target_version or 'any', fullname + tup = 'bdist_msi', self.target_version or 'any', installer_name self.distribution.dist_files.append(tup) if not self.keep_temp: |