33a34
> import json
42a44
> from util import attrdict
73a76,82
> if options.json_config:
> json_file = file(os.path.join(options.outdir, options.json_config), 'w')
> d = root.get_config_as_dict()
> json.dump(d, json_file, indent=4)
> json_file.close()
>
>