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: texi2html.py not working
Type: Stage:
Components: Demos and Tools Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: jlgijsbers, quiver
Priority: normal Keywords:

Created on 2004-05-05 23:42 by quiver, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg20707 - (view) Author: George Yoshida (quiver) (Python committer) Date: 2004-05-05 23:42
Tools/scripts/texi2html.py have several syntactic 
problems(inproper indent level, unclosed brace, etc) and 
raises a SyntaxError.

For example, at line 809
  self.write(self.FN_SOURCE_PATTERN % {'id': repr(id))
should read
  self.write(self.FN_SOURCE_PATTERN % {'id': repr(id)})

Looks like Revision 1.14 to 1.16 introduced these bugs.
msg20708 - (view) Author: Johannes Gijsbers (jlgijsbers) * (Python triager) Date: 2004-08-08 09:45
Logged In: YES 
user_id=469548

Revision 1.17 fixed the SyntaxErrors. It's still not the
most robust script but it's basically working again.
History
Date User Action Args
2022-04-11 14:56:04adminsetgithub: 40221
2004-05-05 23:42:57quivercreate