summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordu.net>2015-09-24 16:48:51 +0200
committerLinus Nordberg <linus@nordu.net>2015-09-27 13:38:30 +0200
commit1f997c076b6d0ed66e6817935d29920e0cac0af3 (patch)
treec5c2a01b485b357feeda8ed0997fba1749f29094 /tools
parent381c04e1cc083c5795f1bf16763e67d505be022f (diff)
Cosmetic.
Diffstat (limited to 'tools')
-rw-r--r--tools/certtools.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/certtools.py b/tools/certtools.py
index 307a728..49f4b34 100644
--- a/tools/certtools.py
+++ b/tools/certtools.py
@@ -739,7 +739,7 @@ def extract_original_entry(entry):
def mv_file(fromfn, tofn):
shutil.move(fromfn, tofn)
-def write_file(fn, sth):
+def write_file(fn, jsondata):
tempname = fn + ".new"
- open(tempname, 'w').write(json.dumps(sth))
+ open(tempname, 'w').write(json.dumps(jsondata))
mv_file(tempname, fn)