facts caching: fix missing json in jsonfile caching

release1.8.3
Rene Moser 10 years ago committed by James Cammarata
parent eedd659444
commit bf656e35e0

@ -20,6 +20,11 @@ import time
import json
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

Loading…
Cancel
Save