Ticket #680 (closed defect: duplicate)
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
Note: See
TracTickets for help on using
tickets.
![[Buildbot Logo]](/chrome/site/header-text-transparent.png)
Kristian fixed this in [138c831f1bc4340b7043dd74b3081d201abdef18]. We should have 0.7.12 out in the next week or so, so no patch release, sorry.