Skip to content
Snippets Groups Projects
Commit 18f25ea5 authored by Alexander Schlemmer's avatar Alexander Schlemmer
Browse files

BUG: 1 Login Error when using password_method=pass

Fix based on solution by fspreck.
parent 6fc0dcaa
No related branches found
No related tags found
No related merge requests found
......@@ -90,4 +90,5 @@ class PassCaller(PlainTextCredentialsProvider):
"""
if "password_identifier" in config:
password = _call_pass(config["password_identifier"])
super(PassCaller, self).configure(password=password, **config)
config["password"] = password
super(PassCaller, self).configure(**config)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment