You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: write UTF-8 characters in apm.yml instead of escaped \xNN sequences
PyYAML defaults to `allow_unicode=False`, which escapes non-ASCII characters
(e.g. "López" → "L\xF3pez") regardless of file encoding. Add `allow_unicode=True`
to all yaml.dump/safe_dump calls that write apm.yml files.
0 commit comments