diff options
Diffstat (limited to 'sphinx/builders/applehelp.py')
-rw-r--r-- | sphinx/builders/applehelp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/builders/applehelp.py b/sphinx/builders/applehelp.py index fa47429e2..f8df9310c 100644 --- a/sphinx/builders/applehelp.py +++ b/sphinx/builders/applehelp.py @@ -190,7 +190,7 @@ class AppleHelpBuilder(StandaloneHTMLBuilder): # Build the access page logger.info(bold('building access page...'), nonl=True) - with codecs.open(path.join(language_dir, '_access.html'), 'w') as f: + with codecs.open(path.join(language_dir, '_access.html'), 'w') as f: # type: ignore f.write(access_page_template % { 'toc': htmlescape(toc, quote=True), 'title': htmlescape(self.config.applehelp_title) |