Title: [261879] trunk/Tools
Revision
261879
Author
[email protected]
Date
2020-05-19 12:31:45 -0700 (Tue, 19 May 2020)

Log Message

[Flatpak SDK] Use items instead of iteritems to make Python 3 happier.

Rubber-stamped by Philippe Normand.

* flatpak/flatpakutils.py:
(WebkitFlatpak.pack_toolchain):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (261878 => 261879)


--- trunk/Tools/ChangeLog	2020-05-19 19:08:56 UTC (rev 261878)
+++ trunk/Tools/ChangeLog	2020-05-19 19:31:45 UTC (rev 261879)
@@ -1,3 +1,12 @@
+2020-05-19  Lauro Moura  <[email protected]>
+
+        [Flatpak SDK] Use items instead of iteritems to make Python 3 happier.
+
+        Rubber-stamped by Philippe Normand.
+
+        * flatpak/flatpakutils.py:
+        (WebkitFlatpak.pack_toolchain):
+
 2020-05-19  Wenson Hsieh  <[email protected]>
 
         [macOS] Drag and drop within a contenteditable area duplicates attachment-backed images

Modified: trunk/Tools/flatpak/flatpakutils.py (261878 => 261879)


--- trunk/Tools/flatpak/flatpakutils.py	2020-05-19 19:08:56 UTC (rev 261878)
+++ trunk/Tools/flatpak/flatpakutils.py	2020-05-19 19:31:45 UTC (rev 261879)
@@ -907,7 +907,7 @@
             Console.message("Created %s self-contained toolchain archive", archive_filename)
 
             sccache_toolchains = []
-            for (compiler_executable, archive_compiler_executable) in path_mapping.iteritems():
+            for (compiler_executable, archive_compiler_executable) in path_mapping.items():
                 item = {'type': 'path_override',
                         'compiler_executable': compiler_executable,
                         'archive': archive_filename,
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to