Commit 9b1ca1b1 authored by Jason R. Coombs's avatar Jason R. Coombs

Merged in viraptor/setuptools (pull request #162)

Fix multiline strings with missing spaces
parents c3114d6a 9a86e5c6
......@@ -160,7 +160,7 @@ def check_packages(dist, attr, value):
for pkgname in value:
if not re.match(r'\w+(\.\w+)*', pkgname):
distutils.log.warn(
"WARNING: %r not a valid package name; please use only"
"WARNING: %r not a valid package name; please use only "
".-separated package names in setup.py", pkgname
)
......@@ -825,7 +825,7 @@ class Feature:
if not self.available:
raise DistutilsPlatformError(
self.description+" is required,"
self.description+" is required, "
"but is not available on this platform"
)
......
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