diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-12-25 10:48:25 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-12-25 10:48:25 -0500 |
commit | 9b1ca1b1965a4a27e399fd94b9ddf2487b49c2a1 (patch) | |
tree | 424c88f6008f6833e0fa71ebffe5de30cbbde129 /setuptools/dist.py | |
parent | c3114d6ab4fe78c07fcbe289e11ea7dec931c5ff (diff) | |
parent | 9a86e5c638a16afc092c9895ae24c4669248448e (diff) | |
download | external_python_setuptools-9b1ca1b1965a4a27e399fd94b9ddf2487b49c2a1.tar.gz external_python_setuptools-9b1ca1b1965a4a27e399fd94b9ddf2487b49c2a1.tar.bz2 external_python_setuptools-9b1ca1b1965a4a27e399fd94b9ddf2487b49c2a1.zip |
Merged in viraptor/setuptools (pull request #162)
Fix multiline strings with missing spaces
Diffstat (limited to 'setuptools/dist.py')
-rw-r--r-- | setuptools/dist.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/dist.py b/setuptools/dist.py index c1421b0f..db15809d 100644 --- a/setuptools/dist.py +++ b/setuptools/dist.py @@ -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" ) |