Title: [90793] trunk/Tools
Revision
90793
Author
[email protected]
Date
2011-07-11 16:35:13 -0700 (Mon, 11 Jul 2011)

Log Message

webkit-patch roll-chromium-deps no longer works
https://bugs.webkit.org/show_bug.cgi?id=64324

Reviewed by James Robinson.

Lower the minimum commit message length to 10.

* Scripts/webkitpy/tool/steps/commit.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (90792 => 90793)


--- trunk/Tools/ChangeLog	2011-07-11 23:33:11 UTC (rev 90792)
+++ trunk/Tools/ChangeLog	2011-07-11 23:35:13 UTC (rev 90793)
@@ -1,3 +1,14 @@
+2011-07-11  Ryosuke Niwa  <[email protected]>
+
+        webkit-patch roll-chromium-deps no longer works
+        https://bugs.webkit.org/show_bug.cgi?id=64324
+
+        Reviewed by James Robinson.
+
+        Lower the minimum commit message length to 10.
+
+        * Scripts/webkitpy/tool/steps/commit.py:
+
 2011-07-11  Alice Boxhall  <[email protected]>
 
         Convert json_results_generator.py to output version 4 JSON.

Modified: trunk/Tools/Scripts/webkitpy/tool/steps/commit.py (90792 => 90793)


--- trunk/Tools/Scripts/webkitpy/tool/steps/commit.py	2011-07-11 23:33:11 UTC (rev 90792)
+++ trunk/Tools/Scripts/webkitpy/tool/steps/commit.py	2011-07-11 23:35:13 UTC (rev 90793)
@@ -44,8 +44,8 @@
 
     def run(self, state):
         self._commit_message = self._tool.checkout().commit_message_for_this_commit(self._options.git_commit).message()
-        if len(self._commit_message) < 50:
-            raise Exception("Attempted to commit with a commit message shorter than 50 characters.  Either your patch is missing a ChangeLog or webkit-patch may have a bug.")
+        if len(self._commit_message) < 10:
+            raise Exception("Attempted to commit with a commit message shorter than 10 characters.  Either your patch is missing a ChangeLog or webkit-patch may have a bug.")
 
         self._state = state
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to