add simplejson as alternative to json

This commit is contained in:
mkosmach 2014-04-25 02:44:51 -07:00
parent 834115290d
commit cfc8b1c561

View file

@ -60,7 +60,11 @@ EXAMPLES = '''
'''
import json
try:
import json
except ImportError:
import simplejson as json
import shlex
import os
import sys