diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2016-06-01 12:52:15 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2016-06-01 12:52:15 +0200 |
commit | c0c58d459ef10ef03e470b8fbaabd14703fd4c27 (patch) | |
tree | 1748b1e35ffd2ce8a9a6b595cb0ba6f274ed14e1 | |
parent | d6622519378217610be1e89885137a9722f45515 (diff) | |
download | bugs-c0c58d459ef10ef03e470b8fbaabd14703fd4c27.tar bugs-c0c58d459ef10ef03e470b8fbaabd14703fd4c27.tar.gz bugs-c0c58d459ef10ef03e470b8fbaabd14703fd4c27.tar.bz2 bugs-c0c58d459ef10ef03e470b8fbaabd14703fd4c27.tar.xz bugs-c0c58d459ef10ef03e470b8fbaabd14703fd4c27.zip |
Fix the default API URL
-rw-r--r-- | docs/en/rst/conf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/en/rst/conf.py b/docs/en/rst/conf.py index a758fd248..34acb4778 100644 --- a/docs/en/rst/conf.py +++ b/docs/en/rst/conf.py @@ -44,7 +44,7 @@ master_doc = 'index' # General information about the project. project = u'Bugzilla' -copyright = u'2014, The Bugzilla Team' +copyright = u'2016, The Bugzilla Team' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -387,7 +387,7 @@ todo_include_todos = False on_rtd = os.environ.get('READTHEDOCS', None) == 'True' if on_rtd: - base_api_url = 'https://www.bugzilla.org/docs/5.0/en/html/api/' + base_api_url = 'https://www.bugzilla.org/docs/5.0/en/html/integrating/api/' else: base_api_url = '../integrating/api/' |