mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-31 15:53:09 +00:00
add simplejson as alternative to json
This commit is contained in:
@@ -60,7 +60,11 @@ EXAMPLES = '''
|
||||
'''
|
||||
|
||||
|
||||
import json
|
||||
try:
|
||||
import json
|
||||
except ImportError:
|
||||
import simplejson as json
|
||||
|
||||
import shlex
|
||||
import os
|
||||
import sys
|
||||
|
||||
Reference in New Issue
Block a user