mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
merge with stable
This commit is contained in:
commit
7207b614b6
4
CHANGES
4
CHANGES
@ -225,8 +225,8 @@ Documentation
|
||||
* Extended the :ref:`documentation about building extensions <dev-extensions>`.
|
||||
|
||||
|
||||
Release 1.2.3 (in development)
|
||||
==============================
|
||||
Release 1.2.3 (released Sep 1, 2014)
|
||||
====================================
|
||||
|
||||
Features added
|
||||
--------------
|
||||
|
3
setup.py
3
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]
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user