add proper error handling for all final exec calls
[hband-tools.git] / user-tools / msgpack2json
blob832cf9daeaee072b8d3ab3ce90ac6542339cc0dc
1 #!/usr/bin/env python
3 import sys
4 import json
5 import msgpack
7 print json.dumps(msgpack.load(sys.stdin), ensure_ascii=False)