summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Alanis <alanisbaez@google.com>2021-12-08 01:44:55 +0000
committerRoberto Alanis <alanisbaez@google.com>2021-12-08 18:53:24 +0000
commit502094488ad5acf778c63fecc6158d263159d970 (patch)
tree55f3636f000dbf37d04a8dc4bf30e00e592173cb
parent58b91b0ec405e2c7f623b051c85d5116a540071a (diff)
downloadlibwebm-502094488ad5acf778c63fecc6158d263159d970.tar.gz
patch-check: remove duplicated words in subject length check
Change-Id: I8c35facb077b7c7b80784699580f93cb58ae0903 Bug: b:185520494
-rw-r--r--PRESUBMIT.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index fb6f32d..58be26d 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -61,7 +61,7 @@ def _CheckCommitSubjectLength(input_api, output_api):
stdout) and (len(stdout) - 1) > _GIT_COMMIT_SUBJECT_LENGTH:
failure_msg = (
"The commit subject: %s is too long (%d chars)\n"
- "Try to keep this to 50 or lessor less (up to 65 is permitted for "
+ "Try to keep this to 50 or less (up to 65 is permitted for "
"non-reverts).\n"
"https://www.git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-"
"Project#_commit_guidelines") % (stdout, len(stdout) - 1)