[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

eric at webkit.org eric at webkit.org
Wed Dec 22 14:46:32 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 95c552648f6907fda37943b67437be586c7e1172
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Oct 19 22:29:11 2010 +0000

    2010-10-19  Eric Seidel  <eric at webkit.org>
    
            Unreviewed.
    
            commit-queue gets stuck when release-patch returns 404
            https://bugs.webkit.org/show_bug.cgi?id=47935
    
            Turns out ClientForm gets upset if passed an int() instead of a string type.
            Yay for untestable code.
    
            * Scripts/webkitpy/common/net/statusserver.py:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@70096 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 782d9c0..d6e7fa7 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,5 +1,17 @@
 2010-10-19  Eric Seidel  <eric at webkit.org>
 
+        Unreviewed.
+
+        commit-queue gets stuck when release-patch returns 404
+        https://bugs.webkit.org/show_bug.cgi?id=47935
+
+        Turns out ClientForm gets upset if passed an int() instead of a string type.
+        Yay for untestable code.
+
+        * Scripts/webkitpy/common/net/statusserver.py:
+
+2010-10-19  Eric Seidel  <eric at webkit.org>
+
         Unreviewed.  Will get Adam's commentary after his meeting
         for now this gets the commit-cluster back running.
 
diff --git a/WebKitTools/Scripts/webkitpy/common/net/statusserver.py b/WebKitTools/Scripts/webkitpy/common/net/statusserver.py
index b6eb01e..756ee99 100644
--- a/WebKitTools/Scripts/webkitpy/common/net/statusserver.py
+++ b/WebKitTools/Scripts/webkitpy/common/net/statusserver.py
@@ -112,7 +112,7 @@ class StatusServer:
         self._browser.open(release_patch_url)
         self._browser.select_form(name="release_patch")
         self._browser["queue_name"] = queue_name
-        self._browser["attachment_id"] = patch.id()
+        self._browser["attachment_id"] = unicode(patch.id())
         self._browser.submit()
 
     def release_work_item(self, queue_name, patch):

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list