From bd39171611788a1df44c2e1d5785871d08755726 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Fri, 10 Apr 2020 12:08:55 -0400 Subject: [PATCH] Fix another use of async name For better python 3 compatibility, stop using async as a variable name. --- confluent_server/confluent/asynchttp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/confluent_server/confluent/asynchttp.py b/confluent_server/confluent/asynchttp.py index 5500d6f0..1072650c 100644 --- a/confluent_server/confluent/asynchttp.py +++ b/confluent_server/confluent/asynchttp.py @@ -64,8 +64,8 @@ class AsyncTermRelation(object): # Need to keep an association of term object to async # This allows the async handler to know the context of # outgoing data to provide to calling code - def __init__(self, termid, async): - self.async = async + def __init__(self, termid, asynchdl): + self.async = asynchdl self.termid = termid def got_data(self, data):