Merge pull request #62 from NebulousLabs/dotenv-override
Add override to load_dotenv call
This commit is contained in:
commit
78c04918df
|
@ -16,7 +16,7 @@ api_endpoint, port, portal_name, bot_token, password = None, None, None, None, N
|
||||||
# Load dotenv file if possible.
|
# Load dotenv file if possible.
|
||||||
if len(sys.argv) > 1:
|
if len(sys.argv) > 1:
|
||||||
env_path = Path(sys.argv[1])
|
env_path = Path(sys.argv[1])
|
||||||
load_dotenv(dotenv_path=env_path)
|
load_dotenv(dotenv_path=env_path, override=True)
|
||||||
|
|
||||||
bot_token = os.environ["DISCORD_BOT_TOKEN"]
|
bot_token = os.environ["DISCORD_BOT_TOKEN"]
|
||||||
portal_name = os.getenv("PORTAL_NAME")
|
portal_name = os.getenv("PORTAL_NAME")
|
||||||
|
|
Reference in New Issue