95c95
< ini_file = file(os.path.join(options.outdir, options.dump_config), 'w')
---
> ini_file = open(os.path.join(options.outdir, options.dump_config), 'w')
104c104,105
< json_file = file(os.path.join(options.outdir, options.json_config), 'w')
---
> json_file = open(
> os.path.join(options.outdir, options.json_config), 'w')