Skip to content
Snippets Groups Projects
Commit 54a46143 authored by Sybren A. Stüvel's avatar Sybren A. Stüvel
Browse files

Worker: added missing 'self' argument in patch_asyncio()

parent c103ae4f
Branches
Tags
No related merge requests found
...@@ -24,6 +24,6 @@ def patch_asyncio(): ...@@ -24,6 +24,6 @@ def patch_asyncio():
if not self._loop: if not self._loop:
return return
return orig_resume_reading(*args, **kwargs) return orig_resume_reading(self, *args, **kwargs)
ue._UnixReadPipeTransport.resume_reading = resume_reading ue._UnixReadPipeTransport.resume_reading = resume_reading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment