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 html fails
Type: crash Stage:
Components: Documentation tools (Sphinx) Versions: Python 3.0, Python 2.6
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: christian.heimes, facundobatista, georg.brandl
Priority: high Keywords: patch

Created on 2008-03-16 12:33 by christian.heimes, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg63574 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2008-03-16 12:33
File "/home/heimes/dev/python/trunk/Doc/tools/sphinx/builder.py", line
236, in write
    self.prepare_writing(docnames)
  File "/home/heimes/dev/python/trunk/Doc/tools/sphinx/builder.py", line
301, in prepare_writing
    self.load_indexer(docnames)
  File "/home/heimes/dev/python/trunk/Doc/tools/sphinx/builder.py", line
489, in load_indexer
    self.indexer.load(f, 'json')
  File "/home/heimes/dev/python/trunk/Doc/tools/sphinx/search.py", line
70, in load
    for (k, v) in frozen[2].iteritems())
AttributeError: 'list' object has no attribute 'iteritems'
make: *** [build] Fehler 1
msg63575 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-03-16 12:50
This should have been fixed a long time ago. Try running "make clean;
make update; make html"?
msg63577 - (view) Author: Facundo Batista (facundobatista) * (Python committer) Date: 2008-03-16 14:04
I was suffering of the same error, so:

make clean: ok

make update:

svn update tools/pygments
svn: requerimiento REPORT falló en '/projects/!svn/vcc/default'
svn: Target path does not exist
make: *** [update] Error 1


Anyway, I went further and made...

make html: and it worked ok!
msg64276 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-03-21 20:43
I assume that it is fixed for Christian too, so am closing it.
History
Date User Action Args
2022-04-11 14:56:31adminsetgithub: 46553
2008-03-21 20:43:29georg.brandlsetstatus: open -> closed
resolution: out of date
messages: + msg64276
keywords: + patch
2008-03-16 14:04:13facundobatistasetnosy: + facundobatista
messages: + msg63577
2008-03-16 12:50:54georg.brandlsetmessages: + msg63575
2008-03-16 12:33:57christian.heimescreate