add simplejson as alternative to json

pull/4420/head
mkosmach 2014-04-25 02:44:51 -07:00
parent 6592511e6e
commit fbf3b78ace
1 changed files with 5 additions and 1 deletions

View File

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