diff options
author | Greg Ward <gward@python.net> | 2000-09-11 00:50:37 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-09-11 00:50:37 (GMT) |
commit | 8fd7ba2c6a333993480a0a9f52332463de79b95f (patch) | |
tree | a46c99f8563d45ec303d9d46ad2eec11d6ac127e /Lib | |
parent | 20283e5cc3845deb85dd406e037c628a15150e9a (diff) | |
download | cpython-8fd7ba2c6a333993480a0a9f52332463de79b95f.zip cpython-8fd7ba2c6a333993480a0a9f52332463de79b95f.tar.gz cpython-8fd7ba2c6a333993480a0a9f52332463de79b95f.tar.bz2 |
Delete some debugging prints.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/distutils/command/bdist_dumb.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/distutils/command/bdist_dumb.py b/Lib/distutils/command/bdist_dumb.py index 0fb8e83..2da9c48 100644 --- a/Lib/distutils/command/bdist_dumb.py +++ b/Lib/distutils/command/bdist_dumb.py @@ -82,8 +82,6 @@ class bdist_dumb (Command): # pseudo-installation tree. archive_basename = "%s.%s" % (self.distribution.get_fullname(), self.plat_name) - print "self.bdist_dir = %s" % self.bdist_dir - print "self.format = %s" % self.format self.make_archive (os.path.join(self.dist_dir, archive_basename), self.format, root_dir=self.bdist_dir) |