diff --git a/CHANGES b/CHANGES index b002cd58d..1999f0087 100644 --- a/CHANGES +++ b/CHANGES @@ -225,8 +225,8 @@ Documentation * Extended the :ref:`documentation about building extensions `. -Release 1.2.3 (in development) -============================== +Release 1.2.3 (released Sep 1, 2014) +==================================== Features added -------------- diff --git a/setup.py b/setup.py index 0696d6abf..9e000d5c9 100644 --- a/setup.py +++ b/setup.py @@ -130,7 +130,8 @@ else: jscatalog = {} for message in catalog: - if any(x[0].endswith(('.js', '.js_t', '.html')) for x in message.locations): + if any(x[0].endswith(('.js', '.js_t', '.html')) + for x in message.locations): msgid = message.id if isinstance(msgid, (list, tuple)): msgid = msgid[0] diff --git a/sphinx/ext/autosummary/__init__.py b/sphinx/ext/autosummary/__init__.py index 18259c712..e3e97676c 100644 --- a/sphinx/ext/autosummary/__init__.py +++ b/sphinx/ext/autosummary/__init__.py @@ -276,7 +276,8 @@ class Autosummary(Directive): # be cached anyway) documenter.analyzer.find_attr_docs() except PycodeError as err: - documenter.env.app.debug('[autodoc] module analyzer failed: %s', err) + documenter.env.app.debug( + '[autodoc] module analyzer failed: %s', err) # no source file -- e.g. for builtin and C modules documenter.analyzer = None