We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6af9a5b commit 655e658Copy full SHA for 655e658
contrib/bst-graph
@@ -133,9 +133,11 @@ def main():
133
graph_lines = subprocess.check_output(cmd, universal_newlines=True)
134
# NOTE: We generate nodes and edges before giving them to graphviz as
135
# the library does not de-deuplicate them.
136
- nodes, build_deps, runtime_deps = parse_graph(re.split("\|\|", graph_lines))
+ nodes, build_deps, runtime_deps = parse_graph(re.split(r"\|\|", graph_lines))
137
graph = generate_graph(nodes, build_deps, runtime_deps)
138
+
139
print(graph.source)
140
141
if args.format:
142
graph.render(cleanup=True,
143
filename='bst-graph',
0 commit comments