Skip to content
Snippets Groups Projects
Commit 3a4b2c0e authored by juga's avatar juga Committed by Matt Traudt
Browse files

Replace conf['paths'] by conf.getpath('paths'

parent 18e55131
No related branches found
No related tags found
No related merge requests found
......@@ -59,6 +59,7 @@ def main(args, conf):
'ran sbws scanner recently?)')
return
bw_file = V3BWFile.from_arg_results(args, conf, results)
output = args.output or conf['paths']['v3bw_fname'].format(now_fname())
output = args.output or \
conf.getpath('paths', 'v3bw_fname').format(now_fname())
bw_file.write(output)
log.info('Mean bandwidth per line: %f "KiB"', bw_file.avg_bw)
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