From c223c8bced3ba8909e4ebe159b4809fb60c606b0 Mon Sep 17 00:00:00 2001 From: shuofengzhang Date: Sun, 15 Mar 2026 13:34:40 +0000 Subject: [PATCH] chore: suppress expected robot-name normalization noise --- code/robots.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/robots.py b/code/robots.py index 21b6cc7..b81c876 100755 --- a/code/robots.py +++ b/code/robots.py @@ -124,8 +124,8 @@ def clean_robot_name(name): # actually uses a non-breaking hyphen, but that seems unlikely, # so this solution should be fine for now. result = re.sub(r"\u2011", "-", name) - if result != name: - print(f"\tCleaned '{name}' to '{result}' - unicode/html mangled chars normalized.") + # Normalization is expected for known source quirks (e.g. non-breaking hyphen), + # so keep this path quiet to avoid noisy CI output. return result