diff options
| author | Stanislaw Pitucha <stanislaw.pitucha@hpe.com> | 2015-12-07 16:13:26 +1100 |
|---|---|---|
| committer | Stanislaw Pitucha <stanislaw.pitucha@hpe.com> | 2015-12-07 16:13:26 +1100 |
| commit | 9a86e5c638a16afc092c9895ae24c4669248448e (patch) | |
| tree | 28399c9652a05368b77f22e0fd8a1727a9d80768 /setuptools | |
| parent | dadd14d82c5f1db83704eb1c6da0b62998cb25a7 (diff) | |
| download | python-setuptools-git-9a86e5c638a16afc092c9895ae24c4669248448e.tar.gz | |
Fix multiline strings with missing spaces
Diffstat (limited to 'setuptools')
| -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 d7ad4655..03369da8 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 ) @@ -818,7 +818,7 @@ class Feature: if not self.available: raise DistutilsPlatformError( - self.description+" is required," + self.description+" is required, " "but is not available on this platform" ) |
