[tools] Fixed warning with wrong escape sequence

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2024-03-05 00:46:16 +02:00 committed by Alexander Borsuk
parent 00a93e760c
commit 62f5c53eec

View file

@ -61,7 +61,7 @@ def exec_shell(test, *flags):
def grep_ios():
logging.info("Grepping iOS...")
grep = "grep -r -I 'L(\|localizedText\|localizedPlaceholder\|NSLocalizedString(' {0}/iphone/*".format(
grep = "grep -r -I 'L(\\|localizedText\\|localizedPlaceholder\\|NSLocalizedString(' {0}/iphone/*".format(
OMIM_ROOT)
ret = exec_shell(grep)
ret = filter_ios_grep(ret)