[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.17-1283-gcf603cf
abarth at webkit.org
abarth at webkit.org
Tue Jan 5 23:55:21 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 5b2c7fa8794db48851dec1b0abc53d36d558f198
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Sat Dec 19 17:23:15 2009 +0000
2009-12-19 Adam Barth <abarth at webkit.org>
Unreviewed fixes for me being terrible at python.
* Scripts/modules/bugzilla.py:
* Scripts/run-webkit-unittests:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52385 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 81e590f..09b7562 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,10 @@
+2009-12-19 Adam Barth <abarth at webkit.org>
+
+ Unreviewed fixes for me being terrible at python.
+
+ * Scripts/modules/bugzilla.py:
+ * Scripts/run-webkit-unittests:
+
2009-12-18 Adam Barth <abarth at webkit.org>
Reviewed by Eric Seidel.
diff --git a/WebKitTools/Scripts/modules/bugzilla.py b/WebKitTools/Scripts/modules/bugzilla.py
index f72ee34..5520dfe 100644
--- a/WebKitTools/Scripts/modules/bugzilla.py
+++ b/WebKitTools/Scripts/modules/bugzilla.py
@@ -475,7 +475,7 @@ class Bugzilla(object):
self.browser.open(self.bug_url_for_bug_id(bug_id))
self.browser.select_form(name="changeform")
- self.browser["newcc"] = email_address_list.join(", ")
+ self.browser["newcc"] = ", ".join(email_address_list)
self.browser.submit()
def post_comment_to_bug(self, bug_id, comment_text, cc=None):
@@ -490,7 +490,7 @@ class Bugzilla(object):
self.browser.select_form(name="changeform")
self.browser["comment"] = comment_text
if cc:
- self.browser["newcc"] = cc.join(", ")
+ self.browser["newcc"] = ", ".join(cc)
self.browser.submit()
def close_bug_as_fixed(self, bug_id, comment_text=None):
diff --git a/WebKitTools/Scripts/run-webkit-unittests b/WebKitTools/Scripts/run-webkit-unittests
index 377489a..576a5e2 100755
--- a/WebKitTools/Scripts/run-webkit-unittests
+++ b/WebKitTools/Scripts/run-webkit-unittests
@@ -44,9 +44,9 @@ from modules.cpp_style_unittest import *
from modules.diff_parser_unittest import *
from modules.logging_unittest import *
from modules.multicommandtool_unittest import *
+from modules.queueengine_unittest import *
from modules.text_style_unittest import *
from modules.webkitport_unittest import *
-from modules.workqueue_unittest import *
if __name__ == "__main__":
# FIXME: This is a hack, but I'm tired of commenting out the test.
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list