/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to revisionview.py

  • Committer: Daniel Schierbeck
  • Date: 2008-04-02 12:26:16 UTC
  • mto: (461.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 462.
  • Revision ID: daniel.schierbeck@gmail.com-20080402122616-il5tw45p5of2irvg
Only show fixed bugs in Bugs page.

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
        bugs_text = revision.properties.get('bugs', '')
68
68
        for bugline in bugs_text.splitlines():
69
69
                (url, status) = bugline.split(" ")
70
 
                self.add_bug(url, status)
 
70
                if status == "fixed":
 
71
                    self.add_bug(url, status)
71
72
 
72
73
    def construct_treeview(self):
73
74
        self.bugs = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING)