Title: [240147] trunk/Tools
Revision
240147
Author
[email protected]
Date
2019-01-18 07:40:26 -0800 (Fri, 18 Jan 2019)

Log Message

[Flatpak] Missing KeyboardInterrupt exception handler
https://bugs.webkit.org/show_bug.cgi?id=193570

Reviewed by Michael Catanzaro.

* flatpak/flatpakutils.py:
(WebkitFlatpak.run_in_sandbox): Basic KeyboardInterrupt handling.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (240146 => 240147)


--- trunk/Tools/ChangeLog	2019-01-18 14:42:46 UTC (rev 240146)
+++ trunk/Tools/ChangeLog	2019-01-18 15:40:26 UTC (rev 240147)
@@ -1,3 +1,13 @@
+2019-01-18  Philippe Normand  <[email protected]>
+
+        [Flatpak] Missing KeyboardInterrupt exception handler
+        https://bugs.webkit.org/show_bug.cgi?id=193570
+
+        Reviewed by Michael Catanzaro.
+
+        * flatpak/flatpakutils.py:
+        (WebkitFlatpak.run_in_sandbox): Basic KeyboardInterrupt handling.
+
 2019-01-18  Zalan Bujtas  <[email protected]>
 
         [LFC][BFC][MarginCollapsing] Collapsing through should not ignore floats.

Modified: trunk/Tools/flatpak/flatpakutils.py (240146 => 240147)


--- trunk/Tools/flatpak/flatpakutils.py	2019-01-18 14:42:46 UTC (rev 240146)
+++ trunk/Tools/flatpak/flatpakutils.py	2019-01-18 15:40:26 UTC (rev 240147)
@@ -767,6 +767,8 @@
             except subprocess.CalledProcessError as e:
                 sys.stderr.write(str(e) + "\n")
                 return e.returncode
+            except KeyboardInterrupt:
+                return 0
 
         return 0
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to