diff --git a/redis/asyncio/client.py b/redis/asyncio/client.py index bbf2a676ed..368607b8a0 100644 --- a/redis/asyncio/client.py +++ b/redis/asyncio/client.py @@ -485,7 +485,7 @@ async def parse_response( """Parses a response from the Redis server""" try: if NEVER_DECODE in options: - response = await connection.read_response(disable_encoding=True) + response = await connection.read_response(disable_decoding=True) else: response = await connection.read_response() except ResponseError: