summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorMichael Gilbert <michael.s.gilbert@gmail.com>2011-02-13 22:46:09 +0000
committerMichael Gilbert <michael.s.gilbert@gmail.com>2011-02-13 22:46:09 +0000
commitfc4972f47f21c5e426d4174a7321a74e5371fb58 (patch)
tree8bf44c78ea5fab251f64bc0473c384e247169d8d /bin
parentcd5f6c798ce398922e0c0df15120959769382c99 (diff)
display notes on todo page
git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@16134 e39458fd-73e7-0310-bf30-c45bca0a0e42
Diffstat (limited to 'bin')
-rw-r--r--bin/tracker_service.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/tracker_service.py b/bin/tracker_service.py
index 1023859561..0d28b5acca 100644
--- a/bin/tracker_service.py
+++ b/bin/tracker_service.py
@@ -823,11 +823,11 @@ checker to find out why they have not entered testing yet."""),
'Hide "check" TODOs')
def gen():
- for (bug, description) in self.db.getTODOs(hide_check=hide_check):
- yield self.make_xref(url, bug), description
+ for (bug, description, note) in self.db.getTODOs(hide_check=hide_check):
+ yield self.make_xref(url, bug), description, note
return self.create_page(
- url, "Bugs with TODO items",
- [P(flags), make_table(gen(), caption=("Bug", "Description"))])
+ url, 'Bugs with TODO items',
+ [P(flags), make_table(gen(), caption=('Bug', 'Description', 'Note'))])
def page_status_undetermined(self, path, params, url):
def gen():

© 2014-2024 Faster IT GmbH | imprint | privacy policy