1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #7160 from mkosmach/devel

Please add simplejson as alternative to json in apt_rpm
This commit is contained in:
James Cammarata 2014-04-25 09:15:06 -05:00
commit ccd607be6b

View file

@ -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