Title: [271159] trunk/Tools
Revision
271159
Author
[email protected]
Date
2021-01-05 10:38:08 -0800 (Tue, 05 Jan 2021)

Log Message

Revert part of https://trac.webkit.org/r271158
Update root level scripts in Tools/Scripts to Python 3

* Scripts/extract-dependencies-from-makefile: This print_function import
was necessary, the build is broken without it.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (271158 => 271159)


--- trunk/Tools/ChangeLog	2021-01-05 18:33:43 UTC (rev 271158)
+++ trunk/Tools/ChangeLog	2021-01-05 18:38:08 UTC (rev 271159)
@@ -1,5 +1,13 @@
 2021-01-05  Alexey Proskuryakov  <[email protected]>
 
+        Revert part of https://trac.webkit.org/r271158
+        Update root level scripts in Tools/Scripts to Python 3
+
+        * Scripts/extract-dependencies-from-makefile: This print_function import
+        was necessary, the build is broken without it.
+
+2021-01-05  Alexey Proskuryakov  <[email protected]>
+
         Remove some unused variables from webkitpy
         https://bugs.webkit.org/show_bug.cgi?id=220180
 

Modified: trunk/Tools/Scripts/extract-dependencies-from-makefile (271158 => 271159)


--- trunk/Tools/Scripts/extract-dependencies-from-makefile	2021-01-05 18:33:43 UTC (rev 271158)
+++ trunk/Tools/Scripts/extract-dependencies-from-makefile	2021-01-05 18:38:08 UTC (rev 271159)
@@ -33,6 +33,7 @@
 # files). Read the make dependency information from stdin and write the results
 # to the specified files.
 
+from __future__ import print_function
 
 import argparse
 import re
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to