Commit fbf3b78a by mkosmach

add simplejson as alternative to json

parent 6592511e
...@@ -60,7 +60,11 @@ EXAMPLES = ''' ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment