4
0
mirror of https://github.com/QuasarApp/QuasarAppCI.git synced 2025-05-07 18:59:36 +00:00

fix syntaxis errors

This commit is contained in:
Andrei Yankovich 2019-07-22 17:05:28 +03:00
parent 8de9581a25
commit 9fceb6db6a
2 changed files with 2 additions and 3 deletions

@ -36,10 +36,10 @@ class buildBotIdentity(BuildBotModule):
]
)
SecretManager secret("/home/andrei/buildBotSecret/secret.json");
secret = SecretManager("/home/andrei/buildBotSecret/secret.json")
self.masterConf['www']['auth'] = util.UserPasswordAuth([
('EndrII', secret.getValue("ENDRII")),
('ZIG', secret.getValue("ZIG"))
])value
])

@ -3,7 +3,6 @@ import json
from pathlib import Path
class SecretManager:
jsfile = {}
def __init__(self, jsFile):
contents = Path(jsFile).read_text()