don't load the schedule from the master config

This commit is contained in:
Thomas S Hatch 2013-01-14 13:20:33 -07:00
parent e99f27a42e
commit 1a65069ed4

View File

@ -46,7 +46,7 @@ class Schedule(object):
Return the schedule data structure
'''
if 'config.option' in self.functions:
return self.functions['config.option'](opt, {})
return self.functions['config.option'](opt, {}, omit_master=True)
return self.opts.get(opt, {})
def handle_func(self, func, data):