Skip to content

Commit

Permalink
don't use override=True
Browse files Browse the repository at this point in the history
  • Loading branch information
rosskarchner committed Jul 30, 2019
1 parent 3ed7f0b commit 1122b4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cfgov/cfgov/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
envfile_path = REPOSITORY_ROOT.child('.env')
environmentdotjson_path = REPOSITORY_ROOT.child('environment.json')
if envfile_path.exists():
dotenv.read_dotenv(envfile_path, override=True)
dotenv.read_dotenv(envfile_path)

elif environmentdotjson_path.exists():
with open(environmentdotjson_path) as environmentdotjson:
Expand Down

0 comments on commit 1122b4b

Please sign in to comment.