mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Changed to call 'get_fullname()', not 'get_full_name()', on Distribution object.
This commit is contained in:
parent
ee0810403d
commit
0ae7f76b40
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -502,7 +502,7 @@ class sdist (Command):
|
|||
|
||||
# Don't warn about missing meta-data here -- should be (and is!)
|
||||
# done elsewhere.
|
||||
base_dir = self.distribution.get_full_name()
|
||||
base_dir = self.distribution.get_fullname()
|
||||
|
||||
# Remove any files that match "base_dir" from the fileset -- we
|
||||
# don't want to go distributing the distribution inside itself!
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue