mirror of https://github.com/ansible/ansible.git
Merge pull request #1 from katzj/centos5-simplejson
Fall back to standalone simplejson modulepull/3/head
commit
6bebedd7eb
@ -1,5 +1,8 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
import json
|
||||
try:
|
||||
import json
|
||||
except ImportError:
|
||||
import simplejson as json
|
||||
|
||||
print json.dumps(1)
|
||||
|
Loading…
Reference in New Issue