summaryrefslogtreecommitdiffstats
path: root/iredis/commands.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-07-17 07:34:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-07-17 07:34:57 +0000
commitd71fd6264d58795c50b9350d7c39677b671e0896 (patch)
tree0aa9e0bd923a00b9ddda4e01af55a76ed314097c /iredis/commands.py
parentReleasing debian version 1.9.1-3. (diff)
downloadiredis-d71fd6264d58795c50b9350d7c39677b671e0896.tar.xz
iredis-d71fd6264d58795c50b9350d7c39677b671e0896.zip
Merging upstream version 1.9.4.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'iredis/commands.py')
-rw-r--r--iredis/commands.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/iredis/commands.py b/iredis/commands.py
index 358c8b7..dcd457f 100644
--- a/iredis/commands.py
+++ b/iredis/commands.py
@@ -94,7 +94,6 @@ commands_summary.update(
"PEEK": {
"summary": "Get the key's type and value.",
"arguments": [{"name": "key", "type": "key"}],
- "since": "1.0",
"complexity": "O(1).",
"since": "1.0",
"group": "iredis",
@@ -135,7 +134,7 @@ def split_command_args(command):
input_args = command[matcher.end() :]
break
else:
- raise InvalidArguments(f"`{command}` is not a valide Redis Command")
+ raise InvalidArguments(f"`{command}` is not a valid Redis Command")
args = list(strip_quote_args(input_args))