Index: git_cl.py |
diff --git a/git_cl.py b/git_cl.py |
index a08141bbe2967eff217db328b9ce8e9c02c856c2..231b1c438821ddb83134bebe8a6ab3c4988f8119 100755 |
--- a/git_cl.py |
+++ b/git_cl.py |
@@ -2498,10 +2498,7 @@ class _GerritChangelistImpl(_ChangelistCodereviewBase): |
cc.extend(options.cc) |
cc = filter(None, cc) |
if cc: |
- # refspec_opts.extend('cc=' + email.strip() for email in cc) |
- # TODO(tandrii): enable this back. http://crbug.com/604377 |
- print('WARNING: Gerrit doesn\'t yet support cc-ing arbitrary emails.\n' |
- ' Ignoring cc-ed emails. See http://crbug.com/604377.') |
+ refspec_opts.extend('cc=' + email.strip() for email in cc) |
if change_desc.get_reviewers(): |
refspec_opts.extend('r=' + email.strip() |