diff options
author | AvitalFineRedis <avital.fine@redislabs.com> | 2021-10-14 08:40:57 +0200 |
---|---|---|
committer | AvitalFineRedis <avital.fine@redislabs.com> | 2021-10-14 08:40:57 +0200 |
commit | 4eeceb0b7ebdf8fb164d1c68cd9c64d320bf9241 (patch) | |
tree | ff57b24c4944d08fb1a5ac9735e2219aec9c9abc /redis/commands.py | |
parent | b559b6d82df3214931d2b4cadc9d380127953b4f (diff) | |
download | redis-py-4eeceb0b7ebdf8fb164d1c68cd9c64d320bf9241.tar.gz |
Throw NotImplementedError
Diffstat (limited to 'redis/commands.py')
-rw-r--r-- | redis/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/commands.py b/redis/commands.py index 11205cf..4a8d430 100644 --- a/redis/commands.py +++ b/redis/commands.py @@ -581,7 +581,7 @@ class Commands: def memory_doctor(self): raise NotImplementedError( - "MEMORY DOCTOR is not supported in the client." + "MEMORY DOCTOR is intentionally not implemented in the client." ) def memory_stats(self): |