Title: [273652] trunk/Tools
- Revision
- 273652
- Author
- aakash_j...@apple.com
- Date
- 2021-03-01 08:41:09 -0800 (Mon, 01 Mar 2021)
Log Message
[ews] Use logname instead of deprecated logfile in PrintConfiguration
https://bugs.webkit.org/show_bug.cgi?id=222378
Reviewed by Jonathan Bedard.
* CISupport/ews-build/steps.py:
(PrintConfiguration.run):
Modified Paths
Diff
Modified: trunk/Tools/CISupport/ews-build/steps.py (273651 => 273652)
--- trunk/Tools/CISupport/ews-build/steps.py 2021-03-01 16:38:39 UTC (rev 273651)
+++ trunk/Tools/CISupport/ews-build/steps.py 2021-03-01 16:41:09 UTC (rev 273652)
@@ -2915,7 +2915,10 @@
command_list.extend(self.command_list_win)
for command in command_list:
- self.commands.append(util.ShellArg(command=command, logfile='stdio'))
+ if sys.version_info > (3, 0):
+ self.commands.append(util.ShellArg(command=command, logname='stdio'))
+ else:
+ self.commands.append(util.ShellArg(command=command, logfile='stdio'))
return super(PrintConfiguration, self).run()
def convert_build_to_os_name(self, build):
Modified: trunk/Tools/ChangeLog (273651 => 273652)
--- trunk/Tools/ChangeLog 2021-03-01 16:38:39 UTC (rev 273651)
+++ trunk/Tools/ChangeLog 2021-03-01 16:41:09 UTC (rev 273652)
@@ -1,3 +1,13 @@
+2021-03-01 Aakash Jain <aakash_j...@apple.com>
+
+ [ews] Use logname instead of deprecated logfile in PrintConfiguration
+ https://bugs.webkit.org/show_bug.cgi?id=222378
+
+ Reviewed by Jonathan Bedard.
+
+ * CISupport/ews-build/steps.py:
+ (PrintConfiguration.run):
+
2021-03-01 Adam Roben <aro...@apple.com>
Teach prepare-ChangeLog to recognize Swift structs/enums/protocols/extensions
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes