summaryrefslogtreecommitdiff
path: root/redis/asyncio/client.py
diff options
context:
space:
mode:
Diffstat (limited to 'redis/asyncio/client.py')
-rw-r--r--redis/asyncio/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/asyncio/client.py b/redis/asyncio/client.py
index bbf2a67..368607b 100644
--- a/redis/asyncio/client.py
+++ b/redis/asyncio/client.py
@@ -485,7 +485,7 @@ class Redis(
"""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: