~ubuntu-branches/ubuntu/trusty/juju/trusty

« back to all changes in this revision

Viewing changes to juju/control/status.py

  • Committer: Clint Byrum
  • Date: 2012-01-23 18:16:35 UTC
  • mfrom: (1.1.4)
  • Revision ID: clint@ubuntu.com-20120123181635-epogr1dvjmk53l0h
* New upstream snapshot.
  - Fixed regression with twisted 11.1 (LP: #917954)

Show diffs side-by-side

added added

removed removed

Lines of Context:
411
411
                        **style["relation"]
412
412
                    ))
413
413
 
414
 
    filelike.write(dot.create(format=format))
 
414
    if format == 'dot':
 
415
        filelike.write(dot.to_string())
 
416
    else:
 
417
        filelike.write(dot.create(format=format))
415
418
 
416
419
renderers["dot"] = render_dot
417
420
renderers["svg"] = functools.partial(render_dot, format="svg")