summaryrefslogtreecommitdiff
path: root/sphinx/htmlhelp.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-01-21 20:20:37 +0000
committerGeorg Brandl <georg@python.org>2008-01-21 20:20:37 +0000
commit50da49fab419949106442e5eec47831d0c82d0b8 (patch)
treef54346ed5c1a451ef1ee5833acc3c58b84014da5 /sphinx/htmlhelp.py
parentb09e628b0f33614e81521ad60e94472a0db09a4d (diff)
downloadsphinx-git-50da49fab419949106442e5eec47831d0c82d0b8.tar.gz
Further refactorings, add extensibility API.
Diffstat (limited to 'sphinx/htmlhelp.py')
-rw-r--r--sphinx/htmlhelp.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/htmlhelp.py b/sphinx/htmlhelp.py
index 3587757c9..53604d87d 100644
--- a/sphinx/htmlhelp.py
+++ b/sphinx/htmlhelp.py
@@ -129,8 +129,8 @@ def build_hhx(builder, outdir, outname):
f = open(path.join(outdir, outname+'.hhp'), 'w')
try:
f.write(project_template % {'outname': outname,
- 'version': builder.config['version'],
- 'project': builder.config['project']})
+ 'version': builder.config.version,
+ 'project': builder.config.project})
if not outdir.endswith(os.sep):
outdir += os.sep
olen = len(outdir)