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

eric at webkit.org eric at webkit.org
Wed Apr 7 23:25:00 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 1e6c6bc193718cb2d34ce82ab9fe67119978b3bc
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Nov 6 19:53:16 2009 +0000

    2009-11-06  Eric Seidel  <eric at webkit.org>
    
            Reviewed by Adam Barth.
    
            bugzilla-tool crashed with exception
            https://bugs.webkit.org/show_bug.cgi?id=31092
    
            * Scripts/modules/bugzilla.py: Change a ',' to a '%' to fix the error.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@50602 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 74167e1..d565402 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,12 @@
+2009-11-06  Eric Seidel  <eric at webkit.org>
+
+        Reviewed by Adam Barth.
+
+        bugzilla-tool crashed with exception
+        https://bugs.webkit.org/show_bug.cgi?id=31092
+
+        * Scripts/modules/bugzilla.py: Change a ',' to a '%' to fix the error.
+
 2009-11-04  Eric Seidel  <eric at webkit.org>
 
         No review, just add a line which got left out of the patch uploaded for commit.
diff --git a/WebKitTools/Scripts/modules/bugzilla.py b/WebKitTools/Scripts/modules/bugzilla.py
index 6773293..9b7c5b7 100644
--- a/WebKitTools/Scripts/modules/bugzilla.py
+++ b/WebKitTools/Scripts/modules/bugzilla.py
@@ -224,7 +224,7 @@ class Bugzilla:
             failure_message = "%s does not have %s permissions according to %s." % (setter_email, result_key, self._view_source_link(committer_list))
             rejection_function(patch['id'], failure_message)
         else:
-            log("Warning, attachment %s on bug %s has invalid %s (%s)", (patch['id'], patch['bug_id'], result_key, setter_email))
+            log("Warning, attachment %s on bug %s has invalid %s (%s)" % (patch['id'], patch['bug_id'], result_key, setter_email))
         return None
 
     def _validate_reviewer(self, patch, reject_invalid_patches):

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list