aboutsummaryrefslogtreecommitdiffhomepage
path: root/PRESUBMIT.py
diff options
context:
space:
mode:
authorGravatar Ravi Mistry <rmistry@google.com>2017-05-08 16:39:27 +0000
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-05-08 16:40:44 +0000
commit9bbed5ecd0b9bd78cd4e73c8a0658461740bff50 (patch)
tree92bca1698413f92d293397af564bf51dd22a8a4e /PRESUBMIT.py
parent2983f4022d756def4f93579ee519cd31c8f24d61 (diff)
Revert "Presubmit: ensure empty line between CL title and description"
This reverts commit 9518830650a45446756d7b621fc87e7a8ff52476. Reason for revert: <INSERT REASONING HERE> Original change's description: > Presubmit: ensure empty line between CL title and description > > Bug: skia: > Change-Id: If1b2d655e9be4b960f76d2d17ce1cf1126f7b2d4 > Reviewed-on: https://skia-review.googlesource.com/15624 > Reviewed-by: Eric Boren <borenet@google.com> > Commit-Queue: Eric Boren <borenet@google.com> > TBR=borenet@google.com,rmistry@google.com NOTRY=true # Not skipping CQ checks because original CL landed > 1 day ago. Change-Id: I311ee790f152dbb8325214650838839f6821c995 Reviewed-on: https://skia-review.googlesource.com/15862 Reviewed-by: Ravi Mistry <rmistry@google.com> Commit-Queue: Ravi Mistry <rmistry@google.com>
Diffstat (limited to 'PRESUBMIT.py')
-rw-r--r--PRESUBMIT.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index dd6512b87b..0baf69c998 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -537,11 +537,6 @@ def PostUploadHook(cl, change, output_api):
if cq_master_to_trybots:
_AddCQExtraTrybotsToDesc(cq_master_to_trybots, new_description_lines)
- # Ensure that there's an empty line between the title and description.
- if len(new_description_lines) > 1:
- if new_description_lines[0] != '':
- new_description_lines.insert(1, '')
-
# If the description has changed update it.
if new_description_lines != original_description_lines:
cl.UpdateDescriptionFooters(new_description_lines, footers)