Title: [198628] trunk/Tools
Revision
198628
Author
[email protected]
Date
2016-03-24 10:01:10 -0700 (Thu, 24 Mar 2016)

Log Message

Fix webkitpy tests after r198617
https://bugs.webkit.org/show_bug.cgi?id=155827

Patch by Bill Ming <[email protected]> on 2016-03-24
Reviewed by Alex Christensen.

* Scripts/webkitpy/tool/steps/confirmdiff.py:
(ConfirmDiff._show_pretty_diff):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (198627 => 198628)


--- trunk/Tools/ChangeLog	2016-03-24 16:53:36 UTC (rev 198627)
+++ trunk/Tools/ChangeLog	2016-03-24 17:01:10 UTC (rev 198628)
@@ -1,3 +1,13 @@
+2016-03-24 Bill Ming <[email protected]>
+
+        Fix webkitpy tests after r198617
+        https://bugs.webkit.org/show_bug.cgi?id=155827
+
+        Reviewed by Alex Christensen.
+
+        * Scripts/webkitpy/tool/steps/confirmdiff.py:
+        (ConfirmDiff._show_pretty_diff):
+
 2016-03-23  Bill Ming  <[email protected]>
 
         webkit-patch failed to open pretty diff on Windows

Modified: trunk/Tools/Scripts/webkitpy/tool/steps/confirmdiff.py (198627 => 198628)


--- trunk/Tools/Scripts/webkitpy/tool/steps/confirmdiff.py	2016-03-24 16:53:36 UTC (rev 198627)
+++ trunk/Tools/Scripts/webkitpy/tool/steps/confirmdiff.py	2016-03-24 17:01:10 UTC (rev 198628)
@@ -53,7 +53,7 @@
             pretty_patch = PrettyPatch(self._tool.executive,
                                        self._tool.scm().checkout_root)
             pretty_diff_file = pretty_patch.pretty_diff_file(diff)
-            url = "" % urllib.pathname2url(pretty_diff_file.name)
+            url = "" % urllib.pathname2url(pretty_diff_file.name)
             self._tool.user.open_url(url)
             # We return the pretty_diff_file here because we need to keep the
             # file alive until the user has had a chance to confirm the diff.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to