diff options
Diffstat (limited to 'setuptools/_distutils/command/bdist_dumb.py')
-rw-r--r-- | setuptools/_distutils/command/bdist_dumb.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/setuptools/_distutils/command/bdist_dumb.py b/setuptools/_distutils/command/bdist_dumb.py index d3f519e0..0f52330f 100644 --- a/setuptools/_distutils/command/bdist_dumb.py +++ b/setuptools/_distutils/command/bdist_dumb.py @@ -105,7 +105,9 @@ class bdist_dumb(Command): # And make an archive relative to the root of the # pseudo-installation tree. - archive_basename = "%s.%s" % (self.distribution.get_fullname(), self.plat_name) + archive_basename = "{}.{}".format( + self.distribution.get_fullname(), self.plat_name + ) pseudoinstall_root = os.path.join(self.dist_dir, archive_basename) if not self.relative: |