diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2005-03-21 20:56:35 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2005-03-21 20:56:35 (GMT) |
commit | 55f1bb8bfa362569b6698a91a1cf421bdfcd13d7 (patch) | |
tree | beea9fb70aee8ff05b1f6fa78bd04e5d2a668bdf /Lib/distutils/command/sdist.py | |
parent | e6c430dffe5618016c516578726c0a7aa1471a9e (diff) | |
download | cpython-55f1bb8bfa362569b6698a91a1cf421bdfcd13d7.zip cpython-55f1bb8bfa362569b6698a91a1cf421bdfcd13d7.tar.gz cpython-55f1bb8bfa362569b6698a91a1cf421bdfcd13d7.tar.bz2 |
Add the upload command. Make all dist commands register their
outputs with the distribution object.
Diffstat (limited to 'Lib/distutils/command/sdist.py')
-rw-r--r-- | Lib/distutils/command/sdist.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py index fe6c913..8b88f22 100644 --- a/Lib/distutils/command/sdist.py +++ b/Lib/distutils/command/sdist.py @@ -449,6 +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.archive_files = archive_files |