Title: [93805] trunk/Tools
Revision
93805
Author
aba...@webkit.org
Date
2011-08-25 12:06:00 -0700 (Thu, 25 Aug 2011)

Log Message

This command has been broken for a while.  This patch updates the
callsite to the new API.

* Scripts/webkitpy/tool/commands/rebaseline.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (93804 => 93805)


--- trunk/Tools/ChangeLog	2011-08-25 19:02:01 UTC (rev 93804)
+++ trunk/Tools/ChangeLog	2011-08-25 19:06:00 UTC (rev 93805)
@@ -1,3 +1,10 @@
+2011-08-25  Adam Barth  <aba...@webkit.org>
+
+        This command has been broken for a while.  This patch updates the
+        callsite to the new API.
+
+        * Scripts/webkitpy/tool/commands/rebaseline.py:
+
 2011-08-25  Dimitri Glazkov  <dglaz...@chromium.org>
 
         garden-o-matic needs a way to report where and how tests are failing in the summary view.

Modified: trunk/Tools/Scripts/webkitpy/tool/commands/rebaseline.py (93804 => 93805)


--- trunk/Tools/Scripts/webkitpy/tool/commands/rebaseline.py	2011-08-25 19:02:01 UTC (rev 93804)
+++ trunk/Tools/Scripts/webkitpy/tool/commands/rebaseline.py	2011-08-25 19:06:00 UTC (rev 93805)
@@ -237,7 +237,7 @@
     def execute(self, options, args, tool):
         builder, build_number = self._builder_to_pull_from()
         build = builder.build(build_number)
-        port = builder_name_for_port_name.port_for_builder(builder.name())
+        port = factory.get_from_builder_name(builder.name())
 
         for test in self._tests_to_update(build):
             results_url = self._results_url_for_test(build, test)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to