Skip to content

Commit

Permalink
Fixed typo in TimeoutError message
Browse files Browse the repository at this point in the history
  • Loading branch information
jamespeterschinner committed Dec 29, 2017
1 parent c607901 commit 0a469f1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion async_v20/interface/decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ async def wrap(self, *args, **kwargs):
try:
return await parse_response(self, response, endpoint, enable_rest)
except ConcurrentTimeoutError:
raise TimeoutError(f'{method.__name__} to longer than {self.rest_timeout} seconds')
raise TimeoutError(f'{method.__name__} took longer than {self.rest_timeout} seconds')

wrap.__signature__ = sig

Expand Down
Binary file modified doc/build/doctrees/environment.pickle
Binary file not shown.
2 changes: 1 addition & 1 deletion doc/build/html/searchindex.js

Large diffs are not rendered by default.

0 comments on commit 0a469f1

Please sign in to comment.