Title: [110987] trunk/Tools
Revision
110987
Author
[email protected]
Date
2012-03-16 04:37:47 -0700 (Fri, 16 Mar 2012)

Log Message

[webkitpy] StatusServer.next_work_item has an incorrectly named local variable
https://bugs.webkit.org/show_bug.cgi?id=81302

Reviewed by Eric Seidel.

This is a trivial patch, but the variable name turned up in a grep of
webkitpy and looks like copy pasta.

* Scripts/webkitpy/common/net/statusserver.py:
(StatusServer.next_work_item):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (110986 => 110987)


--- trunk/Tools/ChangeLog	2012-03-16 11:29:15 UTC (rev 110986)
+++ trunk/Tools/ChangeLog	2012-03-16 11:37:47 UTC (rev 110987)
@@ -1,3 +1,16 @@
+2012-03-16  Adam Barth  <[email protected]>
+
+        [webkitpy] StatusServer.next_work_item has an incorrectly named local variable
+        https://bugs.webkit.org/show_bug.cgi?id=81302
+
+        Reviewed by Eric Seidel.
+
+        This is a trivial patch, but the variable name turned up in a grep of
+        webkitpy and looks like copy pasta.
+
+        * Scripts/webkitpy/common/net/statusserver.py:
+        (StatusServer.next_work_item):
+
 2012-03-16  Andrew Lo  <[email protected]>
 
         [BlackBerry] Enable PAGE_VISIBILITY_API

Modified: trunk/Tools/Scripts/webkitpy/common/net/statusserver.py (110986 => 110987)


--- trunk/Tools/Scripts/webkitpy/common/net/statusserver.py	2012-03-16 11:29:15 UTC (rev 110986)
+++ trunk/Tools/Scripts/webkitpy/common/net/statusserver.py	2012-03-16 11:37:47 UTC (rev 110987)
@@ -125,8 +125,8 @@
 
     def next_work_item(self, queue_name):
         _log.debug("Fetching next work item for %s" % queue_name)
-        patch_status_url = "%s/next-patch/%s" % (self.url, queue_name)
-        return self._fetch_url(patch_status_url)
+        next_patch_url = "%s/next-patch/%s" % (self.url, queue_name)
+        return self._fetch_url(next_patch_url)
 
     def _post_release_work_item(self, queue_name, patch):
         release_patch_url = "%s/release-patch" % (self.url)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to