add simplejson as alternative to json

pull/7160/head
mkosmach 11 years ago
parent 6592511e6e
commit fbf3b78ace

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

Loading…
Cancel
Save