diff options
author | Georg Brandl <georg@python.org> | 2014-09-22 11:06:42 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-09-22 11:06:42 +0200 |
commit | 71cd2f7e50b692f9149cf5103b9bb289bc4f76c6 (patch) | |
tree | 8cca6002fbe256402ef15c92b643715cef01954b /sphinx/ext/jsmath.py | |
parent | 57e897669db1913db08beec2484ea1e9c8f105f7 (diff) | |
download | sphinx-git-71cd2f7e50b692f9149cf5103b9bb289bc4f76c6.tar.gz |
Change extension setup() return value to a dictionary of metadata.
This makes it possible to introduce more metadata values later.
Diffstat (limited to 'sphinx/ext/jsmath.py')
-rw-r--r-- | sphinx/ext/jsmath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/ext/jsmath.py b/sphinx/ext/jsmath.py index 897d87acb..765dfb33e 100644 --- a/sphinx/ext/jsmath.py +++ b/sphinx/ext/jsmath.py @@ -57,4 +57,4 @@ def setup(app): mathbase_setup(app, (html_visit_math, None), (html_visit_displaymath, None)) app.add_config_value('jsmath_path', '', False) app.connect('builder-inited', builder_inited) - return sphinx.__version__ + return {'version': sphinx.__version__} |