From b66187ba13cfe4fa8a31dc3107f9d3783154d1b7 Mon Sep 17 00:00:00 2001 From: AvitalFineRedis Date: Thu, 14 Oct 2021 09:02:16 +0200 Subject: Throw NotImplementedError --- redis/commands.py | 4 ++-- 1 file 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): -- cgit v1.2.1