From 9b745b6cbb0e1e56b3c1a25d0b46fad336860813 Mon Sep 17 00:00:00 2001 From: Daniel Rojas Date: Sun, 24 May 2020 14:01:41 +0200 Subject: [PATCH] Add WireViz info to output file --- src/wireviz.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wireviz.py b/src/wireviz.py index f13e91b..92685e2 100644 --- a/src/wireviz.py +++ b/src/wireviz.py @@ -74,6 +74,8 @@ class Harness: def create_graph(self): dot = Graph() + dot.body.append('// Graph generated by WireViz') + dot.body.append('// https://github.com/formatc1702/WireViz') font = 'arial' dot.attr('graph', rankdir='LR', ranksep='2', bgcolor='transparent', fontname=font) dot.attr('node', shape='record', style='rounded,filled', fillcolor='white', fontname=font)