~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to graph.py

  • Committer: Aaron Bentley
  • Date: 2006-03-07 15:23:15 UTC
  • mfrom: (321.1.2 bzrtools)
  • mto: (147.4.31 trunk)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: abentley@panoramicfeedback.com-20060307152315-42337454a0ad956b
MergeĀ fromĀ mainline

Show diffs side-by-side

added added

removed removed

Lines of Context:
272
272
    elif ext == 'dot' and not done:
273
273
        my_file = file(filename, 'wb')
274
274
        for fragment in output:
275
 
            my_file.write(fragment)
 
275
            my_file.write(fragment.encode('utf-8'))
276
276
    elif ext == 'html':
277
277
        try:
278
278
            invoke_dot_html(output, filename)