Commit b5e99c85 by Rene Moser

facts caching: fix missing json in jsonfile caching

parent f9c203fe
......@@ -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
......
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