diff options
| author | Greg Ward <gward@python.net> | 2000-04-22 02:51:25 +0000 |
|---|---|---|
| committer | Greg Ward <gward@python.net> | 2000-04-22 02:51:25 +0000 |
| commit | 5a78411da74f438590a1d76d71213a5b667c379e (patch) | |
| tree | 08c9f8d78b8f50495bcdddf994df1c5edf1864a8 /command/bdist_dumb.py | |
| parent | bf586ddbeea4df44ebf9a21a17e12243bad0a327 (diff) | |
| download | python-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.py | 2 |
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 |
