diff --git a/gerrit_util.py b/gerrit_util.py index 9de21c856..be6bca6f4 100755 --- a/gerrit_util.py +++ b/gerrit_util.py @@ -686,7 +686,7 @@ def AddReviewers(host, change, add=None, is_reviewer=True, notify=True): _ = ReadHttpJsonResponse(conn, ignore_404=False) except GerritError as e: if e.http_status == 422: # "Unprocessable Entity" - LOGGER.warn('Failed to add "%s" as a %s' % (r, state.lower())) + LOGGER.warn('Note: "%s" not added as a %s' % (r, state.lower())) errors = True else: raise