/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 viz/graph.py

  • Committer: Vincent Ladeuil
  • Date: 2007-06-08 08:55:48 UTC
  • mto: This revision was merged to the branch mainline in revision 205.
  • Revision ID: v.ladeuil+lp@free.fr-20070608085548-z7xdi0k7a0k2oo5j
Make bzr selftest happy again.

* viz/graph.py:
(DummyRevision.__init__): Add missing attributes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
    def __init__(self, revid):
26
26
        super(DummyRevision, self).__init__(revid)
27
27
        self.committer = None
 
28
        self.timestamp = None
 
29
        self.timezone = None
28
30
        self.message = revid
29
31
 
30
32