From 2fb8812afe1410693c5c78a1f2eb7cee15a62fc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Wed, 23 Mar 2005 18:54:36 +0000 Subject: Make dist_files a triple, with the Python target version included, so that bdist_wininst can specify 'any'. --- Lib/distutils/command/sdist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/distutils/command/sdist.py') 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 -- cgit v1.2.1