~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to dotgraph.py

  • Committer: Aaron Bentley
  • Date: 2005-09-17 21:39:00 UTC
  • Revision ID: aaron.bentley@utoronto.ca-20050917213900-4e6eb357c059151d
Got graph showing merge selection decently

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
        style.extend(self.node_style)
65
65
        if len(style) > 0:
66
66
            attributes.append('style="%s"' % ",".join(style))
67
 
        label = self.get_label()
 
67
        label = self.label
68
68
        if label is not None:
69
69
            attributes.append('label="%s"' % label)
70
70
        attributes.append('shape="box"')