mirror of
https://github.com/enpaul/vault2vault.git
synced 2024-11-21 17:46:49 +00:00
Merge pull request #3 from brycelowe/fix/password-binary-encoding
fix: remove encoding from password file reads
This commit is contained in:
commit
3586a4e277
@ -369,7 +369,7 @@ def _load_password(
|
||||
|
||||
if fpath:
|
||||
try:
|
||||
with Path(fpath).resolve().open("rb", encoding="utf-8") as infile:
|
||||
with Path(fpath).resolve().open("rb") as infile:
|
||||
return VaultSecret(infile.read())
|
||||
except (FileNotFoundError, PermissionError) as err:
|
||||
raise RuntimeError(
|
||||
|
Loading…
Reference in New Issue
Block a user