summaryrefslogtreecommitdiff
path: root/sphinx/builders/devhelp.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2016-07-02 14:30:38 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2016-07-02 14:30:38 +0900
commitbd2ad1bc687425768f16f3dd47cd960cee0d162e (patch)
treef56ea90eaa474d223beb5c26fdc434fd65be7ef2 /sphinx/builders/devhelp.py
parentb30d4f488284bfeaf3979d2c58a3582c2927ddb0 (diff)
downloadsphinx-git-bd2ad1bc687425768f16f3dd47cd960cee0d162e.tar.gz
Fix #2699: hyperlinks in help HTMLs are broken if `html_file_suffix` is set
Diffstat (limited to 'sphinx/builders/devhelp.py')
-rw-r--r--sphinx/builders/devhelp.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/sphinx/builders/devhelp.py b/sphinx/builders/devhelp.py
index 62e2c9843..523941110 100644
--- a/sphinx/builders/devhelp.py
+++ b/sphinx/builders/devhelp.py
@@ -59,6 +59,7 @@ class DevhelpBuilder(StandaloneHTMLBuilder):
def init(self):
StandaloneHTMLBuilder.init(self)
self.out_suffix = '.html'
+ self.link_suffix = '.html'
def handle_finish(self):
self.build_devhelp(self.outdir, self.config.devhelp_basename)