diff --git a/presubmit_support.py b/presubmit_support.py index 93a9e7373..9dbfd4ba8 100755 --- a/presubmit_support.py +++ b/presubmit_support.py @@ -541,7 +541,8 @@ class OutputApi(object): def AppendCC(self, cc): """Appends a user to cc for this change.""" - self.more_cc.append(cc) + if cc not in self.more_cc: + self.more_cc.append(cc) def PresubmitPromptOrNotify(self, *args, **kwargs): """Warn the user when uploading, but only notify if committing."""