[FIX] _extension: build with sphinx 1.8
Backport odoo/documentation-user@1b2cbd5b88
This commit is contained in:
parent
5104b77505
commit
c208c962a1
@ -98,7 +98,7 @@ def add_doc_link(app, pagename, templatename, context, doctree):
|
||||
# in Sphinx 1.3 it's possible to have mutliple source suffixes and that
|
||||
# may be useful in the future
|
||||
source_suffix = app.config.source_suffix
|
||||
source_suffix = source_suffix if isinstance(source_suffix, basestring) else source_suffix[0]
|
||||
source_suffix = next(iter(source_suffix))
|
||||
# FIXME: odoo/odoo has a doc/ prefix which is incorrect for this
|
||||
# project, how to unify? Add new setting?
|
||||
context['github_link'] = lambda mode='edit': make_github_link(
|
||||
|
Loading…
Reference in New Issue
Block a user