[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:49:41 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 16055a0531bae9db8e1e6f4af8de6109b7f06c59
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Tue Dec 15 05:53:04 2009 +0000
2009-12-14 Adam Barth <abarth at webkit.org>
Unreviewed. Address reviewer comments from an earlier patch. I didn't
do this earlier because I was worried about conflicts in dependent
patches.
* Scripts/modules/commands/download.py:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52134 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index ed59ae1..f4c6a9e 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,5 +1,13 @@
2009-12-14 Adam Barth <abarth at webkit.org>
+ Unreviewed. Address reviewer comments from an earlier patch. I didn't
+ do this earlier because I was worried about conflicts in dependent
+ patches.
+
+ * Scripts/modules/commands/download.py:
+
+2009-12-14 Adam Barth <abarth at webkit.org>
+
Reviewed by Eric Seidel.
[bzt] Make download commands declarative
diff --git a/WebKitTools/Scripts/modules/commands/download.py b/WebKitTools/Scripts/modules/commands/download.py
index bcb244f..850337a 100644
--- a/WebKitTools/Scripts/modules/commands/download.py
+++ b/WebKitTools/Scripts/modules/commands/download.py
@@ -94,9 +94,9 @@ class LandDiff(AbstractSequencedCommmand):
def _prepare_state(self, options, args, tool):
return {
- "patch": {
- "id": None,
- "bug_id": (args and args[0]) or parse_bug_id(tool.scm().create_patch()),
+ "patch" : {
+ "id" : None,
+ "bug_id" : (args and args[0]) or parse_bug_id(tool.scm().create_patch()),
}
}
@@ -152,7 +152,7 @@ class AbstractPatchSequencingCommand(AbstractPatchProcessingCommand):
def _process_patch(self, patch, options, args, tool):
if self._main_sequence:
- state = {"patch": patch}
+ state = { "patch" : patch }
self._main_sequence.run_and_handle_errors(tool, options, state)
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list