[FIX] Pass the arguments to the __init__ method of pydot.Dot because there is a bug with the pydot.Dot#set method

lp bug: https://launchpad.net/bugs/301648 fixed

bzr revid: stephane@tinyerp.com-20081125141712-kyl78ajk3mrsyzlk
This commit is contained in:
Stephane Wirtel 2008-11-25 15:17:12 +01:00
parent d0fcc9d7ec
commit 9964f729c3
1 changed files with 3 additions and 6 deletions

View File

@ -143,12 +143,9 @@ showpage'''
showpage'''
else:
inst_id = inst_id[0]
graph = pydot.Dot(fontsize='16', label="""\\\n\\nWorkflow: %s\\n OSV: %s""" % (wkfinfo['name'],wkfinfo['osv']))
graph.set('size', '10.7,7.3')
graph.set('center', '1')
graph.set('ratio', 'auto')
graph.set('rotate', '90')
graph.set('rankdir', 'LR')
graph = pydot.Dot(fontsize='16', label="""\\\n\\nWorkflow: %s\\n OSV: %s""" % (wkfinfo['name'],wkfinfo['osv']),
size='10.7, 7.3', center='1', ratio='auto', rotate='90', rankdir='LR'
)
graph_instance_get(cr, graph, inst_id, data.get('nested', False))
ps_string = graph.create(prog='dot', format='ps')
except Exception, e: