summaryrefslogtreecommitdiffstats
path: root/iredis/commands.py
diff options
context:
space:
mode:
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 9f10d53..fcbe2a4 100644
--- a/iredis/commands.py
+++ b/iredis/commands.py
@@ -127,7 +127,7 @@ def split_command_args(command):
raise AmbiguousCommand("command is not finished")
# allow multiple space in user input command
command_allow_multi_spaces = "[ ]+".join(command_name.split())
- matcher = re.match(fr"({command_allow_multi_spaces})( |$)", command.upper())
+ matcher = re.match(rf"({command_allow_multi_spaces})( |$)", command.upper())
if matcher:
matched_command_len = len(matcher.group(1))
input_command = command[:matched_command_len]