diff options
author | Greg Ward <gward@python.net> | 2000-04-22 02:51:25 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-04-22 02:51:25 (GMT) |
commit | 0ae7f76b40a6700491aa739070f2a830dbbb0409 (patch) | |
tree | fcf1fccdb420a6ade6569f7b3e0153911a1cb7ae /Lib/distutils/command/bdist_dumb.py | |
parent | ee0810403dc95f232c0217876e026bac6667e8ae (diff) | |
download | cpython-0ae7f76b40a6700491aa739070f2a830dbbb0409.zip cpython-0ae7f76b40a6700491aa739070f2a830dbbb0409.tar.gz cpython-0ae7f76b40a6700491aa739070f2a830dbbb0409.tar.bz2 |
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.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/bdist_dumb.py b/Lib/distutils/command/bdist_dumb.py index 5456e57..0a68d00 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 |