[bin] statistics: fix syntax error on print

This commit is contained in:
Fabien Castan 2017-11-08 17:45:16 +01:00
parent 8efa14ecda
commit 1439b2c6bb

View file

@ -43,7 +43,7 @@ parser.add_argument("--verbose", help="Print full status information",
args = parser.parse_args()
if not os.path.exists(args.graphFile):
print('ERROR: No graph file "{}".'.format(args.node, args.graphFile))
print('ERROR: No graph file "{}".'.format(args.graphFile))
exit(-1)
graph = pg.loadGraph(args.graphFile)