Commit 2ec59b62 authored by Greg Ward's avatar Greg Ward

Changed to call 'get_fullname()', not 'get_full_name()', on Distribution object.

parent d5d6dad7
...@@ -70,7 +70,7 @@ class bdist_dumb (Command): ...@@ -70,7 +70,7 @@ class bdist_dumb (Command):
# And make an archive relative to the root of the # And make an archive relative to the root of the
# pseudo-installation tree. # pseudo-installation tree.
archive_basename = "%s.%s" % (self.distribution.get_full_name(), archive_basename = "%s.%s" % (self.distribution.get_fullname(),
get_platform()) get_platform())
print "output_dir = %s" % output_dir print "output_dir = %s" % output_dir
print "self.format = %s" % self.format print "self.format = %s" % self.format
......
...@@ -502,7 +502,7 @@ class sdist (Command): ...@@ -502,7 +502,7 @@ class sdist (Command):
# Don't warn about missing meta-data here -- should be (and is!) # Don't warn about missing meta-data here -- should be (and is!)
# done elsewhere. # 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 # Remove any files that match "base_dir" from the fileset -- we
# don't want to go distributing the distribution inside itself! # don't want to go distributing the distribution inside itself!
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment