summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAvitalFineRedis <avital.fine@redislabs.com>2021-10-14 09:02:16 +0200
committerAvitalFineRedis <avital.fine@redislabs.com>2021-10-14 09:02:16 +0200
commitb66187ba13cfe4fa8a31dc3107f9d3783154d1b7 (patch)
tree7214abfef7ba0a02035d8b2309407e4a9494556d
parent1b985b16ac73f9b2eaa6bf70338a6a9049e817aa (diff)
downloadredis-py-b66187ba13cfe4fa8a31dc3107f9d3783154d1b7.tar.gz
Throw NotImplementedError
-rw-r--r--redis/commands.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/redis/commands.py b/redis/commands.py
index d8d6e08..bc80507 100644
--- a/redis/commands.py
+++ b/redis/commands.py
@@ -3154,9 +3154,9 @@ class Commands:
"""
return self.execute_command('MODULE LIST')
- def command(self):
+ def command_info(self):
raise NotImplementedError(
- "COMMAND is intentionally not implemented in the client."
+ "COMMAND INFO is intentionally not implemented in the client."
)
def command_count(self):