summaryrefslogtreecommitdiff
path: root/Lib/distutils/command/bdist_dumb.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-04-22 02:51:25 +0000
committerGreg Ward <gward@python.net>2000-04-22 02:51:25 +0000
commit2ec59b6297d65c70aea762e502f84bb836e5ac24 (patch)
tree980599768e69fa4e76761917d47af7367342dd2a /Lib/distutils/command/bdist_dumb.py
parentd5d6dad7279731ca0ec322f0ba97916a08a82c2e (diff)
downloadcpython-2ec59b6297d65c70aea762e502f84bb836e5ac24.tar.gz
Changed to call 'get_fullname()', not 'get_full_name()', on Distribution object.
Diffstat (limited to 'Lib/distutils/command/bdist_dumb.py')
-rw-r--r--Lib/distutils/command/bdist_dumb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/bdist_dumb.py b/Lib/distutils/command/bdist_dumb.py
index 5456e57ac3..0a68d00a09 100644
--- a/Lib/distutils/command/bdist_dumb.py
+++ b/Lib/distutils/command/bdist_dumb.py
@@ -70,7 +70,7 @@ class bdist_dumb (Command):
# And make an archive relative to the root of the
# pseudo-installation tree.
- archive_basename = "%s.%s" % (self.distribution.get_full_name(),
+ archive_basename = "%s.%s" % (self.distribution.get_fullname(),
get_platform())
print "output_dir = %s" % output_dir
print "self.format = %s" % self.format