diff options
Diffstat (limited to 'tools/json2hash')
-rwxr-xr-x | tools/json2hash | 4 |
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 ? |