File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed
Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 77__title__ = "python-dotenv-vault"
88__description__ = "Syncing your .env to the cloud."
99__url__ = "https://github.com/dotenv-org/dotenv-vault-python"
10- __version__ = "0.0.7 "
10+ __version__ = "0.0.8 "
1111__author__ = "dotenv"
1212__author_email__ = "[email protected] " 1313__license__ = "MIT"
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ def load_dotenv(
2323 This is to inject the parameters to evironment variables.
2424 """
2525 dotenv_vault = DotEnvVault ()
26- logger .info (f'dotenv_key:{ dotenv_vault .dotenv_key } ' )
2726 if dotenv_vault .dotenv_key :
2827 logger .info ('Getting .env from vault.' )
2928 vault_stream = dotenv_vault .parsed_vault ()
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ def parsed_vault(self) -> bytes:
5050
5151 # Getting ciphertext from correct environment in .env.vault
5252 environment_key = f'DOTENV_VAULT_{ vault_environment } '
53- logging .info (f'Getting { environment_key } .' )
53+ logging .info (f'Getting key from { environment_key } .' )
5454
5555 # use python-dotenv library class.
5656 dotenv = DotEnv (dotenv_path = env_vault_path )
You can’t perform that action at this time.
0 commit comments