From 93293e7b319a078c3bec5f2e5985650fcdafa789 Mon Sep 17 00:00:00 2001 From: Yannik Bloscheck Date: Fri, 5 Sep 2025 18:00:06 +0200 Subject: [PATCH] [ios] Really ignore new lines in meatdata script Signed-off-by: Yannik Bloscheck --- tools/python/check_store_metadata.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/python/check_store_metadata.py b/tools/python/check_store_metadata.py index 0fe0531bf..c5942f6e4 100755 --- a/tools/python/check_store_metadata.py +++ b/tools/python/check_store_metadata.py @@ -128,6 +128,8 @@ def check_raw(path, max_length, ignoreEmptyFilesAndNewLines=False): text = text[:-1] else: ok = error(path, "missing new line") + else: + text = text.strip() cur_length = len(text) if cur_length > max_length: