Skip to content

Commit

Permalink
Update src/apis/tokenlistapi.py
Browse files Browse the repository at this point in the history
Co-authored-by: Felix Henneke <felix.henneke@protonmail.com>
  • Loading branch information
harisang and fhenneke authored Nov 9, 2023
1 parent 30043a5 commit 144929f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apis/tokenlistapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def get_token_list(self) -> Optional[list[str]]:
token_list.append(token["address"].lower())
except requests.RequestException as err:
self.logger.warning(
f"Connection error while fetching a token list, error: {err}"
f"Exception while fetching a token list: {err}"
)
if len(token_list) > 0:
return token_list
Expand Down

0 comments on commit 144929f

Please sign in to comment.