Title: [226723] trunk/Tools
Revision
226723
Author
[email protected]
Date
2018-01-10 11:03:33 -0800 (Wed, 10 Jan 2018)

Log Message

Follow-up fix to r226715
https://bugs.webkit.org/show_bug.cgi?id=180555
<rdar://problem/36131381>

Unreviewed infrastructure fix.

* Scripts/webkitpy/xcode/new_simulated_device.py:
(SimulatedDeviceManager._create_or_find_device_for_request): Use _delete instead
of delete.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (226722 => 226723)


--- trunk/Tools/ChangeLog	2018-01-10 18:20:30 UTC (rev 226722)
+++ trunk/Tools/ChangeLog	2018-01-10 19:03:33 UTC (rev 226723)
@@ -1,5 +1,17 @@
 2018-01-10  Jonathan Bedard  <[email protected]>
 
+        Follow-up fix to r226715
+        https://bugs.webkit.org/show_bug.cgi?id=180555
+        <rdar://problem/36131381>
+
+        Unreviewed infrastructure fix.
+
+        * Scripts/webkitpy/xcode/new_simulated_device.py:
+        (SimulatedDeviceManager._create_or_find_device_for_request): Use _delete instead
+        of delete.
+
+2018-01-10  Jonathan Bedard  <[email protected]>
+
         webkitpy: Refactor simulator code (Part 2)
         https://bugs.webkit.org/show_bug.cgi?id=180555
         <rdar://problem/36131381>

Modified: trunk/Tools/Scripts/webkitpy/xcode/new_simulated_device.py (226722 => 226723)


--- trunk/Tools/Scripts/webkitpy/xcode/new_simulated_device.py	2018-01-10 18:20:30 UTC (rev 226722)
+++ trunk/Tools/Scripts/webkitpy/xcode/new_simulated_device.py	2018-01-10 19:03:33 UTC (rev 226723)
@@ -246,7 +246,7 @@
 
         for device in SimulatedDeviceManager.available_devices(host):
             if device.platform_device.name == name:
-                device.platform_device.delete()
+                device.platform_device._delete()
                 break
 
         _log.debug("Creating device '{}', of type {}".format(name, device_type))
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to