mingyen066 commented on code in PR #19168: URL: https://github.com/apache/kafka/pull/19168#discussion_r1986320862
########## committer-tools/reviewers.py: ########## @@ -87,9 +112,16 @@ def prompt_for_user(): continue if selected_reviewers: - out = "\n\nReviewers: " - out += ", ".join([f"{name} <{email}>" for name, email, _ in selected_reviewers]) - out += "\n" - print(out) + reviewer_message = f'\n\nReviewers: {", ".join([f"{name} <{email}>" for name, email, _ in selected_reviewers])}\n' Review Comment: Fixed by adding a backslash before the angle brackets to escape them for Markdown. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org