1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-05-29 20:40:59 +00:00

Fall back to standalone simplejson module

CentOS5 has python 2.4 which doesn't have a built-in json
module
This commit is contained in:
Jeremy Katz 2012-02-23 20:51:29 -05:00
parent 9681e1fa04
commit ef8ea13495
2 changed files with 8 additions and 2 deletions

View file

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