Skip to content

Commit

Permalink
Merge pull request #18 from Fohlen/patch-1
Browse files Browse the repository at this point in the history
Load dotenv vault does not correctly search for .env.vault files
  • Loading branch information
nsnguyen authored Aug 9, 2023
2 parents 8d78a70 + 0bad5fc commit c55a0a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dotenv_vault/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
logger = logging.getLogger(__name__)

def load_dotenv_vault() -> str:
path = dotenv.find_dotenv()
path = dotenv.find_dotenv(filename=".env.vault")
if not path:
return path
path = os.path.dirname(path)
Expand Down

0 comments on commit c55a0a2

Please sign in to comment.