From 726042b2c223ff037daef0678710044d19e4a947 Mon Sep 17 00:00:00 2001 From: Kalvin Lee Date: Fri, 8 Mar 2024 06:28:24 +0000 Subject: [PATCH] split_cl: Add spaces In source, line-crossing string fragments are joined with no spaces in between. This CL trivially adds spaces s.t. the warning doesn't get printed like: ``` won'tbreak anything...to cancelyour jobs ``` Change-Id: I17b4a6c0d22fa63ee4ea66d5b32f7fc3221bc2be Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/5352388 Reviewed-by: Yiwei Zhang Commit-Queue: Yiwei Zhang Auto-Submit: Kalvin Lee --- split_cl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/split_cl.py b/split_cl.py index efd4206ab..b263915aa 100644 --- a/split_cl.py +++ b/split_cl.py @@ -276,8 +276,8 @@ def SplitCl(description_file, comment_file, changelist, cmd_upload, dry_run, 'This will generate "%r" CLs. This many CLs can potentially' ' generate too much load on the build infrastructure.\n\n' 'Please email infra-dev@chromium.org to ensure that this won\'t' - 'break anything. The infra team reserves the right to cancel' - 'your jobs if they are overloading the CQ.\n\n' + ' break anything. The infra team reserves the right to cancel' + ' your jobs if they are overloading the CQ.\n\n' '(Alternatively, you can reduce the number of CLs created by' ' using the --max-depth option. Pass --dry-run to examine the' ' CLs which will be created until you are happy with the'