git-cl: don't prompt after cleaning patchset title
BUG=688099
Change-Id: Ic505ab6553b1a9f1e6ab51377bb6519d805a847e
Reviewed-on: https://chromium-review.googlesource.com/436406
Reviewed-by: Andrii Shyshkalov <tandrii@chromium.org>
Reviewed-by: Andrew Bonventre <andybons@chromium.org>
Commit-Queue: Aaron Gable <agable@chromium.org>
diff --git a/git_cl.py b/git_cl.py
index b3d8c9f..31c80ae 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -2784,9 +2784,9 @@
title = re.sub(r'[^\w ]', '', title)
if not automatic_title:
print('WARNING: Patchset title may only contain alphanumeric chars '
- 'and spaces. Cleaned up title:\n%s' % title)
- if not options.force:
- ask_for_data('Press enter to continue, Ctrl+C to abort')
+ 'and spaces. You can edit it in the UI. '
+ 'See https://crbug.com/663787.\n'
+ 'Cleaned up title: %s' % title)
# Per doc, spaces must be converted to underscores, and Gerrit will do the
# reverse on its side.
refspec_opts.append('m=' + title.replace(' ', '_'))