# This Python file uses the following encoding: utf-8 from BuildBotLib.buildBotModule import BuildBotModule from BuildBotLib.secretManager import SecretManager class BuildBotChangeSource(BuildBotModule): def __init__(self): BuildBotModule.__init__(self) secret = SecretManager("/home/andrei/buildBotSecret/secret.json") self.masterConf['www']['change_hook_dialects'] = [ { 'github': { 'secret': secret.getValue('WebHook'), 'token': secret.getValue('gitHub'), 'strict': True, }, }, ] # self.masterConf['www']['change_hook_dialects'] = [ # { 'github': { # 'secret': secret.getValue('WebHook'), # 'strict': True, # }, # }, # ] # change_hook_dialects={'github': {}}, # self.masterConf['www'] = dict( # change_hook_dialects={'github': { # 'secret': secret.getValue('WebHook'), # 'token': secret.getValue('gitHub'), # 'strict': True, # } # }, # )