add simplejson as alternative to json

reviewable/pr18780/r1
mkosmach 11 years ago
parent 834115290d
commit cfc8b1c561

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

Loading…
Cancel
Save