From 03b34ed3936bfcf9c862328a1117766d71def48b Mon Sep 17 00:00:00 2001 From: Siddharth Reddy Date: Wed, 5 Mar 2025 16:48:00 +0530 Subject: [PATCH] Fixed the invalid escape sequence '\s' error --- lldbinit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldbinit.py b/lldbinit.py index 41bc37c..236b645 100644 --- a/lldbinit.py +++ b/lldbinit.py @@ -3784,7 +3784,7 @@ def dump_conditionalaarch64(cpsr): # x = re.search('([a-z0-9]{2,3})', operands) # extract each operand - they are comma separated # cb have two, tb three operands - x = re.findall("[^,\s]+", operands) + x = re.findall("[^,\\s]+", operands) # if we can't read the operands it's an error if x is None: return taken, reason