Clean up basic issues in the HighState class

This commit is contained in:
Thomas S Hatch 2011-05-28 13:21:30 -06:00
parent d1e20659fe
commit 3b50d4c285

View file

@ -285,9 +285,9 @@ class HighState(object):
in a the local cache.
'''
def __init__(self, opts):
self.client = salt.minion.FileClient(opts)
self.opts = self.__gen_opts(opts)
self.state = State(self.opts)
self.client = salt.minion.FileClient(self.opts)
self.matcher = salt.minion.Matcher(self.opts)
def __gen_opts(self, opts):