~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to dotgraph.py

  • Committer: Aaron Bentley
  • Date: 2005-09-01 15:08:45 UTC
  • Revision ID: abentley@panoramicfeedback.com-20050901150845-fd9bd8dffcd17467
Switched to use boxes

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
        label = self.get_label()
60
60
        if label is not None:
61
61
            attributes.append('label="%s"' % label)
 
62
        attributes.append('shape="box"')
62
63
        if len(attributes) > 0:
63
64
            return '%s[%s]' % (self.name, " ".join(attributes))
64
65