Skip to content

Commit

Permalink
fix: use correct password_store_dir overwrite in otterdog config
Browse files Browse the repository at this point in the history
  • Loading branch information
netomi committed Sep 30, 2024
1 parent cc9d1a7 commit 049388e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion otterdog/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def _get_credential_provider(self, provider_type: str) -> credentials.Credential
case "pass":
pass_defaults = query_json("defaults.pass", self._configuration) or {}

password_store_dir = pass_defaults.get("password_store", "")
password_store_dir = pass_defaults.get("password_store_dir", "")
username_pattern = pass_defaults.get("username_pattern", "")
password_pattern = pass_defaults.get("password_pattern", "")
twofa_seed_pattern = pass_defaults.get("twofa_seed_pattern", "")
Expand Down

0 comments on commit 049388e

Please sign in to comment.