[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 13:35:16 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 59382fc20e98521247f2326651125c8c9efeed0d
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Sep 21 00:07:43 2010 +0000

    2010-09-20  Eric Seidel  <eric at webkit.org>
    
            Unreviewed, adding a line which got dropped and is trivially correct (and tested).
    
            commit-queue can't land patches
            https://bugs.webkit.org/show_bug.cgi?id=46138
    
            Add a line of code I forgot in my last commit.
    
            * Scripts/webkitpy/common/net/bugzilla.py:
            * Scripts/webkitpy/common/net/bugzilla_unittest.py:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67895 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 91c0636..d9c1001 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,15 @@
+2010-09-20  Eric Seidel  <eric at webkit.org>
+
+        Unreviewed, adding a line which got dropped and is trivially correct (and tested).
+
+        commit-queue can't land patches
+        https://bugs.webkit.org/show_bug.cgi?id=46138
+
+        Add a line of code I forgot in my last commit.
+
+        * Scripts/webkitpy/common/net/bugzilla.py:
+        * Scripts/webkitpy/common/net/bugzilla_unittest.py:
+
 2010-09-20  Adam Barth  <abarth at webkit.org>
 
         Reviewed by Eric Seidel.
diff --git a/WebKitTools/Scripts/webkitpy/common/net/bugzilla.py b/WebKitTools/Scripts/webkitpy/common/net/bugzilla.py
index 7e17e3b..cc64fac 100644
--- a/WebKitTools/Scripts/webkitpy/common/net/bugzilla.py
+++ b/WebKitTools/Scripts/webkitpy/common/net/bugzilla.py
@@ -513,6 +513,7 @@ class Bugzilla(object):
         bug = {}
         bug["id"] = int(soup.find("bug_id").string)
         bug["title"] = self._string_contents(soup.find("short_desc"))
+        bug["bug_status"] = self._string_contents(soup.find("bug_status"))
         bug["reporter_email"] = self._string_contents(soup.find("reporter"))
         bug["assigned_to_email"] = self._string_contents(soup.find("assigned_to"))
         bug["cc_emails"] = [self._string_contents(element)
diff --git a/WebKitTools/Scripts/webkitpy/common/net/bugzilla_unittest.py b/WebKitTools/Scripts/webkitpy/common/net/bugzilla_unittest.py
index 280696e..32f23cd 100644
--- a/WebKitTools/Scripts/webkitpy/common/net/bugzilla_unittest.py
+++ b/WebKitTools/Scripts/webkitpy/common/net/bugzilla_unittest.py
@@ -213,6 +213,7 @@ ZEZpbmlzaExvYWRXaXRoUmVhc29uOnJlYXNvbl07Cit9CisKIEBlbmQKIAogI2VuZGlmCg==
         "cc_emails" : ["foo at bar.com", "example at example.com"],
         "reporter_email" : "eric at webkit.org",
         "assigned_to_email" : "webkit-unassigned at lists.webkit.org",
+        "bug_status": "NEW",
         "attachments" : [{
             "attach_date": datetime.datetime(2009, 12, 27, 23, 51),
             'name': u'Patch',

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list