diff options
| author | georg.brandl <devnull@localhost> | 2008-01-21 20:20:37 +0000 |
|---|---|---|
| committer | georg.brandl <devnull@localhost> | 2008-01-21 20:20:37 +0000 |
| commit | 280f743d44b77d302f7396d730f8ae18c79e5c77 (patch) | |
| tree | f54346ed5c1a451ef1ee5833acc3c58b84014da5 /sphinx/htmlhelp.py | |
| parent | 83423d857d013008847ac5b8a34c9e6c1066822e (diff) | |
| download | sphinx-280f743d44b77d302f7396d730f8ae18c79e5c77.tar.gz | |
Further refactorings, add extensibility API.
Diffstat (limited to 'sphinx/htmlhelp.py')
| -rw-r--r-- | sphinx/htmlhelp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/htmlhelp.py b/sphinx/htmlhelp.py index 3587757c..53604d87 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) |
