Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
kclowes committed Feb 11, 2019
1 parent f71ab2b commit 6edf8a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion web3/contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -1518,7 +1518,8 @@ def __getattr__(self, function_name):
functions_available = ', '.join([fn['name'] for fn in self._functions])
raise MismatchedABI(
"The function '{}' was not found in this contract's ABI. ".format(function_name),
"Here is a list of all of the function names found: {}. ".format(functions_available),
"Here is a list of all of the function names found: ",
"{}. ".format(functions_available),
"Did you mean to call one of those functions?"
)
else:
Expand Down

0 comments on commit 6edf8a8

Please sign in to comment.