diff options
author | Éric Araujo <merwok@netwok.org> | 2012-03-05 16:04:07 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2012-03-05 16:04:07 (GMT) |
commit | b8e280d225568ea07a02e3e6b94667bd764f9695 (patch) | |
tree | 634cd553469c39d393abb2656c1d10c72867d0d4 /Lib/packaging/command | |
parent | d1671239a485556d02f5b62c5dc868107e71360b (diff) | |
download | cpython-b8e280d225568ea07a02e3e6b94667bd764f9695.zip cpython-b8e280d225568ea07a02e3e6b94667bd764f9695.tar.gz cpython-b8e280d225568ea07a02e3e6b94667bd764f9695.tar.bz2 |
Make packaging’ upload command work with bdist_msi products (#13719)
Diffstat (limited to 'Lib/packaging/command')
-rw-r--r-- | Lib/packaging/command/bdist_msi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/packaging/command/bdist_msi.py b/Lib/packaging/command/bdist_msi.py index 995eec5..ad1edef 100644 --- a/Lib/packaging/command/bdist_msi.py +++ b/Lib/packaging/command/bdist_msi.py @@ -261,7 +261,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: |