Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: err.args -> err.msg
Browse files Browse the repository at this point in the history
tristiisch committed Nov 18, 2024
1 parent 426b276 commit ee7963c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/deezer_token_test.py
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ async def test_download(self):
try:
await self.deezer_downloader.get_client()
except (DeezerTokenInvalidException, DeezerTokensUnavailableException) as err:
self.fail(err.args)
self.fail(err.msg)


if __name__ == "__main__":

0 comments on commit ee7963c

Please sign in to comment.