Fix incorrect reference to opts dict

This commit is contained in:
Thomas S Hatch 2011-02-27 15:19:59 -07:00
parent 8c1b94ae99
commit cc7f93d93c

View file

@ -50,5 +50,5 @@ class Minion(object):
'''
Execute this method to start up a minion.
'''
minion = salt.Minion(opts)
minion = salt.Minion(self.opts)
minion.tune_in()