Fix graphviz file header
The two header comments were missing an endline. Closes #258
This commit is contained in:
parent
7f33517a79
commit
9af0cb8ab0
@ -93,8 +93,8 @@ class Harness:
|
|||||||
|
|
||||||
def create_graph(self) -> Graph:
|
def create_graph(self) -> Graph:
|
||||||
dot = Graph()
|
dot = Graph()
|
||||||
dot.body.append(f'// Graph generated by {APP_NAME} {__version__}')
|
dot.body.append(f'// Graph generated by {APP_NAME} {__version__}\n')
|
||||||
dot.body.append(f'// {APP_URL}')
|
dot.body.append(f'// {APP_URL}\n')
|
||||||
dot.attr('graph', rankdir='LR',
|
dot.attr('graph', rankdir='LR',
|
||||||
ranksep='2',
|
ranksep='2',
|
||||||
bgcolor=wv_colors.translate_color(self.options.bgcolor, "HEX"),
|
bgcolor=wv_colors.translate_color(self.options.bgcolor, "HEX"),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user