Skip to content

Commit

Permalink
Closes #939
Browse files Browse the repository at this point in the history
  • Loading branch information
cinnaminty-d authored May 30, 2021
1 parent aaffc21 commit ba7d036
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions brownie/network/alert.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ def _loop(
if value == start_value:
continue
if msg:
msg = msg.format(start_value, value)
print(f"{color('bright red')}ALERT{color}: {msg}")
fmt_msg = msg.format(start_value, value)
print(f"{color('bright red')}ALERT{color}: {fmt_msg}")
if callback:
callback(start_value, value)
start_value = value
Expand Down

0 comments on commit ba7d036

Please sign in to comment.