From f28badc20f29f8eef113263fc99cb355f494dda8 Mon Sep 17 00:00:00 2001 From: "eric@webkit.org" Date: Sat, 21 Nov 2009 21:12:59 +0000 Subject: [PATCH] 2009-11-21 Eric Seidel No review. Fixing a typo from the previous patch for bug 31767. AbstractQueue.run_bugzilla_tool throws an exception https://bugs.webkit.org/show_bug.cgi?id=31769 * Scripts/modules/commands/queues.py: git-svn-id: https://svn.webkit.org/repository/webkit/trunk@51284 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- WebKitTools/ChangeLog | 9 +++++++++ WebKitTools/Scripts/modules/commands/queues.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog index c897371e4244..c793a5edbfee 100644 --- a/WebKitTools/ChangeLog +++ b/WebKitTools/ChangeLog @@ -1,3 +1,12 @@ +2009-11-21 Eric Seidel + + No review. Fixing a typo from the previous patch for bug 31767. + + AbstractQueue.run_bugzilla_tool throws an exception + https://bugs.webkit.org/show_bug.cgi?id=31769 + + * Scripts/modules/commands/queues.py: + 2009-11-21 Eric Seidel Reviewed by Adam Barth. diff --git a/WebKitTools/Scripts/modules/commands/queues.py b/WebKitTools/Scripts/modules/commands/queues.py index fee7f6d7aad8..742affba06e7 100644 --- a/WebKitTools/Scripts/modules/commands/queues.py +++ b/WebKitTools/Scripts/modules/commands/queues.py @@ -95,7 +95,7 @@ class AbstractQueue(Command, WorkQueueDelegate): raise NotImplementedError, "subclasses must implement" def run_bugzilla_tool(self, args): - bugzilla_tool_args = [tool.path()] + args + bugzilla_tool_args = [self.tool.path()] + args WebKitLandingScripts.run_and_throw_if_fail(bugzilla_tool_args) def log_progress(self, patch_ids): -- 2.36.0