aboutsummaryrefslogtreecommitdiffstats
path: root/slack/http.py
diff options
context:
space:
mode:
Diffstat (limited to 'slack/http.py')
-rw-r--r--slack/http.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/slack/http.py b/slack/http.py
index 794164d..ca99526 100644
--- a/slack/http.py
+++ b/slack/http.py
@@ -42,10 +42,11 @@ async def hook_process_hashtable(command: str, options: Dict[str, str], timeout:
return_code = -1
while return_code == -1:
- _, return_code, out, err = await future
+ next_future = FutureProcess(future.id)
+ _, return_code, out, err = await next_future
log(
LogLevel.TRACE,
- f"hook_process_hashtable intermediary response ({future.id}): command: {command}",
+ f"hook_process_hashtable intermediary response ({next_future.id}): command: {command}",
)
stdout.write(out)
stderr.write(err)