add simplejson as alternative to json
This commit is contained in:
parent
6592511e6e
commit
fbf3b78ace
1 changed files with 5 additions and 1 deletions
|
@ -60,7 +60,11 @@ EXAMPLES = '''
|
|||
'''
|
||||
|
||||
|
||||
try:
|
||||
import json
|
||||
except ImportError:
|
||||
import simplejson as json
|
||||
|
||||
import shlex
|
||||
import os
|
||||
import sys
|
||||
|
|
Loading…
Reference in a new issue