add simplejson as alternative to json

This commit is contained in:
mkosmach 2014-04-25 02:44:51 -07:00
parent 6592511e6e
commit fbf3b78ace

View file

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