summaryrefslogtreecommitdiff
path: root/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
commit5a78411da74f438590a1d76d71213a5b667c379e (patch)
tree08c9f8d78b8f50495bcdddf994df1c5edf1864a8 /command/bdist_dumb.py
parentbf586ddbeea4df44ebf9a21a17e12243bad0a327 (diff)
downloadpython-setuptools-git-5a78411da74f438590a1d76d71213a5b667c379e.tar.gz
Changed to call 'get_fullname()', not 'get_full_name()', on Distribution object.
Diffstat (limited to 'command/bdist_dumb.py')
-rw-r--r--command/bdist_dumb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/command/bdist_dumb.py b/command/bdist_dumb.py
index 5456e57a..0a68d00a 100644
--- a/command/bdist_dumb.py
+++ b/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