Load credential file from correct path

This commit is contained in:
Joscha
2021-06-01 09:18:08 +00:00
parent f6b26f4ead
commit e1bda94329
3 changed files with 5 additions and 3 deletions

View File

@ -16,7 +16,7 @@ AuthConstructor = Callable[[
AUTHENTICATORS: Dict[str, AuthConstructor] = {
"credential-file": lambda n, s, c:
CredentialFileAuthenticator(n, CredentialFileAuthSection(s)),
CredentialFileAuthenticator(n, CredentialFileAuthSection(s), c),
"keyring": lambda n, s, c:
KeyringAuthenticator(n, KeyringAuthSection(s)),
"simple": lambda n, s, c: