Merge pull request #1 from katzj/centos5-simplejson

Fall back to standalone simplejson module
This commit is contained in:
Michael DeHaan 2012-02-23 19:47:51 -08:00
commit 6bebedd7eb
2 changed files with 8 additions and 2 deletions

View file

@ -1,6 +1,9 @@
#!/usr/bin/python #!/usr/bin/python
import json try:
import json
except ImportError:
import simplejson as json
import subprocess import subprocess
import sys import sys
import datetime import datetime

View file

@ -1,5 +1,8 @@
#!/usr/bin/python #!/usr/bin/python
import json try:
import json
except ImportError:
import simplejson as json
print json.dumps(1) print json.dumps(1)