Commit bf656e35 by Rene Moser Committed by James Cammarata

facts caching: fix missing json in jsonfile caching

parent eedd6594
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment