mirror of
https://github.com/QuasarApp/QuasarAppCI.git
synced 2025-05-10 20:29:36 +00:00
fix syntaxis errors
This commit is contained in:
parent
8de9581a25
commit
9fceb6db6a
@ -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([
|
self.masterConf['www']['auth'] = util.UserPasswordAuth([
|
||||||
('EndrII', secret.getValue("ENDRII")),
|
('EndrII', secret.getValue("ENDRII")),
|
||||||
('ZIG', secret.getValue("ZIG"))
|
('ZIG', secret.getValue("ZIG"))
|
||||||
])value
|
])
|
||||||
|
|
||||||
|
@ -3,7 +3,6 @@ import json
|
|||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
class SecretManager:
|
class SecretManager:
|
||||||
jsfile = {}
|
|
||||||
|
|
||||||
def __init__(self, jsFile):
|
def __init__(self, jsFile):
|
||||||
contents = Path(jsFile).read_text()
|
contents = Path(jsFile).read_text()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user