From 5975e6c0f621c1664b6f18c9c06628cb080e4b12 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 26 Dec 2008 20:29:23 +0100 Subject: [PATCH] Cosmetic changes. --- sphinx/builders/__init__.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/sphinx/builders/__init__.py b/sphinx/builders/__init__.py index 4cd4c2d39..03e835aff 100644 --- a/sphinx/builders/__init__.py +++ b/sphinx/builders/__init__.py @@ -237,8 +237,7 @@ class Builder(object): def build(self, docnames, summary=None, method='update'): """ - Main build method. This first updates the environment, and then calls - :meth:`write`. + Main build method. First updates the environment, and then calls :meth:`write`. """ if summary: self.info(bold('building [%s]: ' % self.name), nonl=1) @@ -275,8 +274,7 @@ class Builder(object): self.info(bold('no targets are out of date.')) return - # another indirection to support methods which don't build files - # individually + # another indirection to support builders that don't build files individually self.write(docnames, updated_docnames, method) # finish (write static files etc.)