aboutsummaryrefslogtreecommitdiffstats
path: root/tools/json2hash
diff options
context:
space:
mode:
Diffstat (limited to 'tools/json2hash')
-rwxr-xr-xtools/json2hash4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/json2hash b/tools/json2hash
index e8fa4f3..0accbcd 100755
--- a/tools/json2hash
+++ b/tools/json2hash
@@ -32,11 +32,11 @@ class Processor(object):
self.out.write(' tbl)\n')
self.out.write('tbl)')
elif _type is list:
- self.out.write('(list \n')
+ self.out.write('(vector \n')
for v in data:
self._print(v)
self.out.write('\n')
- self.out.wirte(')\n')
+ self.out.write(')\n')
elif (_type is str or _type is unicode):
self.out.write(pystr2elstrexp(data))
else: # number ?