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

facts caching: fix missing json in jsonfile caching

This commit is contained in:
Rene Moser 2014-12-23 16:15:26 +01:00
parent f9c203feb6
commit b5e99c852e

View file

@ -19,6 +19,11 @@ import os
import time
import errno
try:
import json
except ImportError:
import simplejson as json
from ansible import constants as C
from ansible import utils
from ansible.cache.base import BaseCacheModule