Fix module path to SaltCacheError

* salt.exception.SaltCacheError => salt.exceptions.SaltCacheError
                                                    ^
This commit is contained in:
Thayne Harbaugh 2015-10-01 14:37:25 -06:00 committed by rallytime
parent ce4c64a2e3
commit 3d2ee4297d

View file

@ -1190,7 +1190,7 @@ class AESFuncs(object):
try:
salt.utils.job.store_job(
self.opts, load, event=self.event, mminion=self.mminion)
except salt.exception.SaltCacheError:
except salt.exceptions.SaltCacheError:
log.error('Could not store job information for load: {0}'.format(load))
def _syndic_return(self, load):