summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-08-22 01:49:41 (GMT)
committerGreg Ward <gward@python.net>2000-08-22 01:49:41 (GMT)
commit986659fffed674ca28786231137134941b40ff27 (patch)
tree6225c553acaebd200c8a963ca6452df30e2e4e43
parent04e25a1bdfd8fd724ab46a9c946ae8aa11cd09af (diff)
downloadcpython-986659fffed674ca28786231137134941b40ff27.zip
cpython-986659fffed674ca28786231137134941b40ff27.tar.gz
cpython-986659fffed674ca28786231137134941b40ff27.tar.bz2
Don't bother to 'mkpath()' the 'dist_dir' -- that's now taken care of
in archive_util.py.
-rw-r--r--Lib/distutils/command/sdist.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py
index b2d7a86..2351ebb 100644
--- a/Lib/distutils/command/sdist.py
+++ b/Lib/distutils/command/sdist.py
@@ -442,8 +442,6 @@ class sdist (Command):
self.make_release_tree (base_dir, self.filelist.files)
archive_files = [] # remember names of files we create
- if self.dist_dir:
- self.mkpath(self.dist_dir)
for fmt in self.formats:
file = self.make_archive (base_name, fmt, base_dir=base_dir)
archive_files.append(file)