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

facts caching: fix missing json in jsonfile caching
pull/9814/head
Toshio Kuratomi 10 years ago
commit ec2fc3adf8

@ -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

Loading…
Cancel
Save