Skip to content

Commit

Permalink
Merge pull request #829 from eth-brownie/fix-normalize-bake
Browse files Browse the repository at this point in the history
Set bake project names to lowercase
  • Loading branch information
iamdefinitelyahuman authored Oct 29, 2020
2 parents 21a6db7 + 0ebc2c0 commit 3d41042
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brownie/project/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ def from_brownie_mix(
Returns the path to the project as a string.
"""
project_name = str(project_name).replace("-mix", "")
project_name = str(project_name).lower().replace("-mix", "")
url = MIXES_URL.format(project_name)
if project_path is None:
project_path = Path(".").joinpath(project_name)
Expand Down

0 comments on commit 3d41042

Please sign in to comment.