facts caching: fix missing json in jsonfile caching

pull/9881/head
Rene Moser 11 years ago
parent f9c203feb6
commit b5e99c852e

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