mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
Raise KeyError for None key in lazy loader
This commit is contained in:
parent
dc07c023cf
commit
787f43e394
@ -1030,7 +1030,7 @@ class LazyLoader(salt.utils.lazy.LazyDict):
|
|||||||
Load a single item if you have it
|
Load a single item if you have it
|
||||||
'''
|
'''
|
||||||
# if the key doesn't have a '.' then it isn't valid for this mod dict
|
# if the key doesn't have a '.' then it isn't valid for this mod dict
|
||||||
if '.' not in key:
|
if key is None or '.' not in key:
|
||||||
raise KeyError
|
raise KeyError
|
||||||
mod_name, _ = key.split('.', 1)
|
mod_name, _ = key.split('.', 1)
|
||||||
if mod_name in self.missing_modules:
|
if mod_name in self.missing_modules:
|
||||||
|
Loading…
Reference in New Issue
Block a user