]> granicus.if.org Git - python/commitdiff
Use standard comma punctuation; reword some sentences in the docs
authorAndrew M. Kuchling <amk@amk.ca>
Mon, 5 Oct 2009 22:32:48 +0000 (22:32 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Mon, 5 Oct 2009 22:32:48 +0000 (22:32 +0000)
Doc/distutils/examples.rst
Lib/distutils/command/check.py

index d5918a5eb26e02fee0afe5076f45d87d0cdd16d1..648063b2176726e94eabf887dc5ffac4c934903e 100644 (file)
@@ -236,10 +236,10 @@ With exactly the same source tree layout, this extension can be put in the
 Checking a package
 ==================
 
-The ``check`` command allows you to verify if your package meta-data are
-meeting the minimum requirements to build a distribution.
+The ``check`` command allows you to verify if your package meta-data
+meet the minimum requirements to build a distribution.
 
-To run it, just call it over your :file:`setup.py` script. If something is
+To run it, just call it using your :file:`setup.py` script. If something is
 missing, ``check`` will display a warning.
 
 Let's take an example with a simple script::
@@ -252,7 +252,7 @@ Running the ``check`` command will display some warnings::
 
     $ python setup.py check
     running check
-    warning: check: missing required meta-data: version ,url
+    warning: check: missing required meta-data: versionurl
     warning: check: missing meta-data: either (author and author_email) or
              (maintainer and maintainer_email) must be supplied
 
index 7d56dfcf4003f7ebe9c2c9f13919a3c3a6fae6a1..bc29baaba4364b79c6412598249e6f32395be274 100644 (file)
@@ -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, " +