]> granicus.if.org Git - python/commitdiff
Changed to call 'get_fullname()', not 'get_full_name()', on Distribution object.
authorGreg Ward <gward@python.net>
Sat, 22 Apr 2000 02:51:25 +0000 (02:51 +0000)
committerGreg Ward <gward@python.net>
Sat, 22 Apr 2000 02:51:25 +0000 (02:51 +0000)
Lib/distutils/command/bdist_dumb.py
Lib/distutils/command/sdist.py

index 5456e57ac32ae4e1c9876550e1dfade6bd129517..0a68d00a097cb79db4f4477751d48b46f8482b0c 100644 (file)
@@ -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
index 43007d597001e14baef64e3e9e3a6a82f5425834..2cf8e385b84c25e50fa67362a8ab868f34f28794 100644 (file)
@@ -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!