summaryrefslogtreecommitdiff
path: root/Lib/distutils/command/sdist.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2005-03-23 18:54:36 +0000
committerMartin v. Löwis <martin@v.loewis.de>2005-03-23 18:54:36 +0000
commit2fb8812afe1410693c5c78a1f2eb7cee15a62fc8 (patch)
treed450850015e6fba67c38881b8ae79f75d24b0bf2 /Lib/distutils/command/sdist.py
parent7e5563ddd88ca1f2607a51f69d85a067e7fe0f37 (diff)
downloadcpython-2fb8812afe1410693c5c78a1f2eb7cee15a62fc8.tar.gz
Make dist_files a triple, with the Python target version included,
so that bdist_wininst can specify 'any'.
Diffstat (limited to 'Lib/distutils/command/sdist.py')
-rw-r--r--Lib/distutils/command/sdist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py
index 8b88f22f83..3dfe6f21a7 100644
--- a/Lib/distutils/command/sdist.py
+++ b/Lib/distutils/command/sdist.py
@@ -449,7 +449,7 @@ class sdist (Command):
for fmt in self.formats:
file = self.make_archive(base_name, fmt, base_dir=base_dir)
archive_files.append(file)
- self.distribution.dist_files.append(('sdist',file))
+ self.distribution.dist_files.append(('sdist', '', file))
self.archive_files = archive_files