| 124 |
s_normal += normal |
s_normal += normal |
| 125 |
s_wishlist += wishlist |
s_wishlist += wishlist |
| 126 |
s_fixed += fixed |
s_fixed += fixed |
| 127 |
|
if (pkg not in binlist): # Source package needs to be counted too |
| 128 |
|
(rc, normal, wishlist, fixed) = bugs.get(pkg, ["0","0","0","0"]) |
| 129 |
|
s_rc += string.atoi(rc) |
| 130 |
|
s_normal += string.atoi(normal) |
| 131 |
|
s_wishlist += string.atoi(wishlist) |
| 132 |
|
s_fixed += string.atoi(fixed) |
| 133 |
|
|
| 134 |
elt.setAttribute("rc", "%d" % s_rc) |
elt.setAttribute("rc", "%d" % s_rc) |
| 135 |
elt.setAttribute("normal", "%d" % s_normal) |
elt.setAttribute("normal", "%d" % s_normal) |
| 136 |
elt.setAttribute("wishlist", "%d" % s_wishlist) |
elt.setAttribute("wishlist", "%d" % s_wishlist) |