summaryrefslogtreecommitdiffstats
path: root/iredis/commands.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-20 05:58:30 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-20 05:58:47 +0000
commita18cd2460ab7b3123402eb2eb10c42a0b73257de (patch)
treec89e5f1866cba0c0521970bbbc5c538ad7b308b6 /iredis/commands.py
parentReleasing debian version 1.14.1-1. (diff)
downloadiredis-a18cd2460ab7b3123402eb2eb10c42a0b73257de.tar.xz
iredis-a18cd2460ab7b3123402eb2eb10c42a0b73257de.zip
Merging upstream version 1.15.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'iredis/commands.py')
-rw-r--r--iredis/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iredis/commands.py b/iredis/commands.py
index 3580cdb..481fc74 100644
--- a/iredis/commands.py
+++ b/iredis/commands.py
@@ -115,7 +115,7 @@ def split_command_args(command):
command = command.strip()
for command_name in all_commands:
- # for command that is paritaly input, like `command in`, we should
+ # for command that is partially input, like `command in`, we should
# match with `command info`, otherwise, `command in` will result in
# `command` with `args` is ('in') which is an invalid case.
normalized_input_command = " ".join(command.split()).upper()