This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: make htmlhelp raises non-reproducable exception
Type: Stage:
Components: Documentation tools (Sphinx) Versions:
process
Status: closed Resolution: works for me
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: georg.brandl, loewis
Priority: normal Keywords:

Created on 2008-03-01 21:55 by loewis, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg63171 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2008-03-01 21:55
Sometimes, when I run "make htmlhelp", I get a traceback of

writing additional files...

Traceback (most recent call last):

  File "tools/sphinx-build.py", line 24, in <module>

    sys.exit(main(sys.argv))

  File "/cygdrive/c/loewis/3k/python/Doc/tools/sphinx/__init__.py", line
141, in

 main

    builderobj.build_update()

  File "/cygdrive/c/loewis/3k/python/Doc/tools/sphinx/builder.py", line
202, in

build_update

    summary='%d source files that are out of date' % len(to_build))

  File "/cygdrive/c/loewis/3k/python/Doc/tools/sphinx/builder.py", line
235, in

build

    self.finish()

  File "/cygdrive/c/loewis/3k/python/Doc/tools/sphinx/builder.py", line
449, in

finish

    download_base_url = self.config['download_base_url'],

KeyError: 'download_base_url'

make: *** [build] Fehler 1

When redoing "make htmlhelp", it immediately completes without error.
msg63173 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2008-03-01 22:19
After upgrading the tools, this problem is apparently gone.
History
Date User Action Args
2022-04-11 14:56:31adminsetgithub: 46467
2008-03-01 22:19:19loewissetstatus: open -> closed
resolution: works for me
messages: + msg63173
2008-03-01 21:55:31loewiscreate