Commit ec2fc3ad by Toshio Kuratomi

Merge pull request #9881 from resmo/fix/missing-json-jsonfile-caching

facts caching: fix missing json in jsonfile caching
parents fb5b6829 b5e99c85
......@@ -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