Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tools/json-normalize
diff options
context:
space:
mode:
Diffstat (limited to 'tools/json-normalize')
-rwxr-xr-xtools/json-normalize2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/json-normalize b/tools/json-normalize
index ec6bd0f..069908d 100755
--- a/tools/json-normalize
+++ b/tools/json-normalize
@@ -15,7 +15,7 @@ for path in args.paths:
in_file.close()
if args.sort_by is not None:
- data.sort(key=itemgetter(args.sort_by))
+ data.sort(key=itemgetter(args.sort_by))
out_file = open(path, "wb")
json.dump(data, out_file, sort_keys=True, indent=4)