From 62d5a57b056dd5a7d11e5fc19de3cdcf42c3a30e Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Sun, 4 Jun 2000 15:12:51 +0000 Subject: [PATCH] Use 'ensure_string_list()' for 'formats' option, so that it can be spelled sensibly in a config file. --- Lib/distutils/command/sdist.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py index 03de85b1aee3..af88eba07a57 100644 --- a/Lib/distutils/command/sdist.py +++ b/Lib/distutils/command/sdist.py @@ -73,6 +73,7 @@ class sdist (Command): if self.template is None: self.template = "MANIFEST.in" + self.ensure_string_list('formats') if self.formats is None: try: self.formats = [self.default_format[os.name]] @@ -80,8 +81,6 @@ class sdist (Command): raise DistutilsPlatformError, \ "don't know how to create source distributions " + \ "on platform %s" % os.name - elif type (self.formats) is StringType: - self.formats = string.split (self.formats, ',') bad_format = check_archive_formats (self.formats) if bad_format: -- 2.47.3