Reviewed by Adam Barth.
Teach the StatusBot how to support more than just the commit-queue
https://bugs.webkit.org/show_bug.cgi?id=31754
* Scripts/modules/commands/queues.py: Fix silly typo.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@51265
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2009-11-20 Eric Seidel <eric@webkit.org>
+
+ Reviewed by Adam Barth.
+
+ Teach the StatusBot how to support more than just the commit-queue
+ https://bugs.webkit.org/show_bug.cgi?id=31754
+
+ * Scripts/modules/commands/queues.py: Fix silly typo.
+
2009-11-20 Eric Seidel <eric@webkit.org>
Reviewed by Adam Barth.
def execute(self, options, args, tool):
self.options = options
self.tool = tool
- work_queue = WorkQueue(self, self.name)
+ work_queue = WorkQueue(self.name, self)
work_queue.run()