Kaydet (Commit) 62d5a57b authored tarafından Greg Ward's avatar Greg Ward

Use 'ensure_string_list()' for 'formats' option, so that it can be

spelled sensibly in a config file.
üst a68c93ac
......@@ -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:
......
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