Skip to content

Commit

Permalink
Update vyper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Aug 16, 2024
1 parent 97060d8 commit 5142f4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brownie/project/compiler/vyper.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def compile_from_input_json(
return vvm.compile_standard(input_json, base_path=allow_paths, vyper_version=version)
except vvm.exceptions.VyperError as exc:
print(version)
raise
raise Exception(version, type(version), exc)
raise CompilerError(exc, "vyper")


Expand Down

0 comments on commit 5142f4b

Please sign in to comment.