Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Unified Diff: gcl.py

Issue 341663004: Do not notify watchers about --private issues (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcl.py
diff --git a/gcl.py b/gcl.py
index 775ab94dd6ce9d346749bfa987c3a00be6b99b83..1502c061effe99e4b16cf2c2a0de0bd384f1ad4b 100755
--- a/gcl.py
+++ b/gcl.py
@@ -896,9 +896,11 @@ def CMDupload(change_info, args):
# CC_LIST only when --private is specified explicitly on the command
# line.
if "--private" in upload_arg:
- Warn("WARNING: CC_LIST is ignored since private flag is specified. "
- "You need to review and add them manually if necessary.")
+ Warn("WARNING: CC_LIST and WATCHLISTS are ignored when --private is "
+ "specified. You need to review and add them manually if "
+ "necessary.")
cc_list = ""
+ no_watchlists = True
else:
cc_list = GetCodeReviewSetting("CC_LIST")
if not no_watchlists and watchers:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698