summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislaw Pitucha <stanislaw.pitucha@hpe.com>2015-12-07 16:13:26 +1100
committerStanislaw Pitucha <stanislaw.pitucha@hpe.com>2015-12-07 16:13:26 +1100
commit3479aecd31ffa38f804da096aaa894680ab50f7b (patch)
tree15c17e0f6cf55a2c5d3be007866cac5417f2f056
parent1d4c9d45d387d0cce7e67fdbab5a9a5ff71c47f5 (diff)
downloadpython-setuptools-bitbucket-3479aecd31ffa38f804da096aaa894680ab50f7b.tar.gz
Fix multiline strings with missing spaces
-rw-r--r--setuptools/dist.py4
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"
)