Ticket #680 (closed defect: duplicate)

Opened 2 years ago

Last modified 2 years ago

grid.py in 0.7.11p3 buggy (fails to render completely)

Reported by: fingolfin Owned by:
Priority: major Milestone: 0.7.12
Version: 0.7.11 Keywords:
Cc:

Description

We just upgraded our buildbot ( http://buildbot.scummvm.org) to 0.7.11p3. Unfortunately buildbot/status/web/grid.py contains an error which causes the grid page to fail completely. Luckily, the fix is trivial: Line 199,

html_categories = map(html.escape(categories))

has to be replaced by

html_categories = map(html.escape, categories)

I realized that you are now working on 0.7.12, but since 0.7.11.x is the current stable version, and likely might be so for some time to come, I thought it would be good to have this serious bug reported (and maybe fixed in a 0.7.11p4?)

Change History

comment:1 Changed 2 years ago by dustin

  • Status changed from new to closed
  • Type changed from undecided to defect
  • Resolution set to duplicate
  • Milestone changed from undecided to 0.7.12

Kristian fixed this in [138c831f1bc4340b7043dd74b3081d201abdef18]. We should have 0.7.12 out in the next week or so, so no patch release, sorry.

Note: See TracTickets for help on using tickets.