mirror of
https://github.com/ansible/awx.git
synced 2026-05-12 03:47:36 -02:30
Include a newline on the debug generated graph visualization
fix some import bugs and clear some whitespace from the command test
This commit is contained in:
@@ -72,7 +72,7 @@ class SimpleDAG(object):
|
||||
for from_node, to_node in self.edges:
|
||||
doc += "%s -> %s;\n" % (short_string_obj(self.nodes[from_node]['node_object']),
|
||||
short_string_obj(self.nodes[to_node]['node_object']))
|
||||
doc += "}"
|
||||
doc += "}\n"
|
||||
gv_file = open('/tmp/graph.gv', 'w')
|
||||
gv_file.write(doc)
|
||||
gv_file.close()
|
||||
|
||||
Reference in New Issue
Block a user