mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Remove ALIASES block from template util
These alias warnings were removed in #38218 for 2017.7.
This commit is contained in:
parent
c673b64583
commit
ea457aa0a5
1 changed files with 1 additions and 5 deletions
|
@ -73,11 +73,7 @@ class AliasedLoader(object):
|
|||
return getattr(self.wrapped, name)
|
||||
|
||||
def __contains__(self, name):
|
||||
if name in ALIASES:
|
||||
salt.utils.warn_until('Nitrogen', ALIAS_WARN)
|
||||
return ALIASES[name] in self.wrapped
|
||||
else:
|
||||
return name in self.wrapped
|
||||
return name in self.wrapped
|
||||
|
||||
|
||||
class AliasedModule(object):
|
||||
|
|
Loading…
Add table
Reference in a new issue