Skip to content
Snippets Groups Projects
Commit ab8841a2 authored by Lionel GUEZ's avatar Lionel GUEZ
Browse files

Correct print message

Edge list file is not necessarily in current directory since commit
c328203b.
parent a0fe7bed
No related branches found
No related tags found
No related merge requests found
......@@ -178,7 +178,7 @@ if __name__ == "__main__":
plot_all_components(G, label)
elif args.node is not None:
if args.time:
print("Reading edge list in current directory...")
print("Reading edge list and SHPC...")
t0 = time.perf_counter()
G = report_graph.read_eddy_graph(args.edgelist, args.shpc_dir,
......@@ -202,7 +202,7 @@ if __name__ == "__main__":
plot_nbunch(G, G.nodes[args.node]["component"], label = label)
else:
if args.time:
print("Reading edge lists in current directory...")
print("Reading edge lists and SHPC...")
t0 = time.perf_counter()
G = report_graph.read_eddy_graph(args.edgelist, args.shpc_dir,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment