From 14d45cbe9061487f1026bd7e4a7f89d4025115fc Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 28 Jun 2019 15:48:44 -0400 Subject: [PATCH] Use polylines for the edge splines Signed-off-by: Roberto Rosario --- mayan/apps/document_states/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/document_states/models.py b/mayan/apps/document_states/models.py index d718fd7b5f..d006dcf6c3 100644 --- a/mayan/apps/document_states/models.py +++ b/mayan/apps/document_states/models.py @@ -97,7 +97,7 @@ class Workflow(models.Model): def render(self): diagram = Digraph( name='finite_state_machine', graph_attr={ - 'rankdir': 'LR', + 'rankdir': 'LR', 'splines': 'polyline' }, format='png' )