diff options
| author | Martin v. Löwis <martin@v.loewis.de> | 2005-03-23 18:54:36 (GMT) |
|---|---|---|
| committer | Martin v. Löwis <martin@v.loewis.de> | 2005-03-23 18:54:36 (GMT) |
| commit | 98da562600def4f3e2054ec52acff32f397aa096 (patch) | |
| tree | e4e9d11f64ec766ddd8100995faa903a3c2f3ea7 /Lib/distutils/command/sdist.py | |
| parent | c8734a72576845731c145b96f6825126605976cc (diff) | |
| download | cpython-98da562600def4f3e2054ec52acff32f397aa096.zip cpython-98da562600def4f3e2054ec52acff32f397aa096.tar.gz cpython-98da562600def4f3e2054ec52acff32f397aa096.tar.bz2 | |
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.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py index 8b88f22..3dfe6f2 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 |
