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

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 12:53:39 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 2cf7eb2516153608eed14ad29bc2b1cf0855ed72
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Sep 1 03:30:25 2010 +0000

    2010-08-31  Ademar de Souza Reis Jr  <ademar.reis at openbossa.org>
    
            Reviewed by Adam Barth.
    
            Allow Ctrl+C inside Bugzilla::fetch_bug_dictionary
            https://bugs.webkit.org/show_bug.cgi?id=44789
    
            * Scripts/webkitpy/common/net/bugzilla.py:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66571 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 4fe9ddf..940533a 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,12 @@
+2010-08-31  Ademar de Souza Reis Jr  <ademar.reis at openbossa.org>
+
+        Reviewed by Adam Barth.
+
+        Allow Ctrl+C inside Bugzilla::fetch_bug_dictionary
+        https://bugs.webkit.org/show_bug.cgi?id=44789
+
+        * Scripts/webkitpy/common/net/bugzilla.py:
+
 2010-08-31  Leandro Pereira  <leandro at profusion.mobi>
 
         Reviewed by Adam Barth.
diff --git a/WebKitTools/Scripts/webkitpy/common/net/bugzilla.py b/WebKitTools/Scripts/webkitpy/common/net/bugzilla.py
index a538a5f..2b2258e 100644
--- a/WebKitTools/Scripts/webkitpy/common/net/bugzilla.py
+++ b/WebKitTools/Scripts/webkitpy/common/net/bugzilla.py
@@ -518,6 +518,8 @@ class Bugzilla(object):
     def fetch_bug_dictionary(self, bug_id):
         try:
             return self._parse_bug_page(self._fetch_bug_page(bug_id))
+        except KeyboardInterrupt:
+            raise
         except:
             self.authenticate()
             return self._parse_bug_page(self._fetch_bug_page(bug_id))

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list