Skip to content

Commit

Permalink
Load dotenv vault does not correctly search for .env.vault files
Browse files Browse the repository at this point in the history
  • Loading branch information
Fohlen authored Aug 8, 2023
1 parent 8d78a70 commit 0bad5fc
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 0bad5fc

Please sign in to comment.