diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2009-10-05 22:32:48 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2009-10-05 22:32:48 (GMT) |
commit | b6f0128c632fa6621cfdc384ddafd6cb38219bf0 (patch) | |
tree | 5a7bb5b619cbd49d2ecc9637105c414161afeeba /Lib/distutils | |
parent | 400054e59edf7bb98bff02950abb24f4fc3e9d2d (diff) | |
download | cpython-b6f0128c632fa6621cfdc384ddafd6cb38219bf0.zip cpython-b6f0128c632fa6621cfdc384ddafd6cb38219bf0.tar.gz cpython-b6f0128c632fa6621cfdc384ddafd6cb38219bf0.tar.bz2 |
Use standard comma punctuation; reword some sentences in the docs
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/command/check.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/check.py b/Lib/distutils/command/check.py index 7d56dfc..bc29baa 100644 --- a/Lib/distutils/command/check.py +++ b/Lib/distutils/command/check.py @@ -91,7 +91,7 @@ class check(Command): missing.append(attr) if missing: - self.warn("missing required meta-data: %s" % ' ,'.join(missing)) + self.warn("missing required meta-data: %s" % ', '.join(missing)) if metadata.author: if not metadata.author_email: self.warn("missing meta-data: if 'author' supplied, " + |