[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

abarth at webkit.org abarth at webkit.org
Thu Apr 8 01:22:16 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 8e9f2b4f4e2818eee77336ff59697dfa0ff16dc1
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jan 22 23:58:44 2010 +0000

    2010-01-22  Petri Latvala  <petri.latvala at nomovok.com>
    
            Reviewed by David Levin.
    
            check-webkit-style breaks on files with unknown types
            https://bugs.webkit.org/show_bug.cgi?id=34001
    
            For files with type FileType.NONE, dispatch_processor returns None.
    
            * Scripts/webkitpy/style/checker.py: Don't call process_file with a processor of value None.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53730 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 17f1ff9..3cf80bc 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,14 @@
+2010-01-22  Petri Latvala  <petri.latvala at nomovok.com>
+
+        Reviewed by David Levin.
+
+        check-webkit-style breaks on files with unknown types
+        https://bugs.webkit.org/show_bug.cgi?id=34001
+
+        For files with type FileType.NONE, dispatch_processor returns None.
+
+        * Scripts/webkitpy/style/checker.py: Don't call process_file with a processor of value None.
+
 2010-01-22  Adam Barth  <abarth at webkit.org>
 
         Reviewed by Eric Seidel.
diff --git a/WebKitTools/Scripts/webkitpy/style/checker.py b/WebKitTools/Scripts/webkitpy/style/checker.py
index 9e142b8..c1506c9 100644
--- a/WebKitTools/Scripts/webkitpy/style/checker.py
+++ b/WebKitTools/Scripts/webkitpy/style/checker.py
@@ -880,6 +880,9 @@ class StyleChecker(object):
         processor = dispatcher.dispatch_processor(file_path,
                                                   handle_style_error,
                                                   verbosity)
+        if processor is None:
+            return
+
         process_file(processor, file_path, handle_style_error)
 
     def check_patch(self, patch_string):

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list