From 6ccb99d98b36d1bc9e24ab2eb63218ebb5e237e2 Mon Sep 17 00:00:00 2001 From: Tim Kourt Date: Mon, 21 May 2018 13:35:04 -0700 Subject: [PATCH] auto-t: fix python interface handler for devices --- autotests/util/iwd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autotests/util/iwd.py b/autotests/util/iwd.py index 687b5610..23e522dd 100755 --- a/autotests/util/iwd.py +++ b/autotests/util/iwd.py @@ -630,7 +630,7 @@ class DeviceList(collections.Mapping): self._dict.pop(key).remove() def _interfaces_added_handler(self, path, interfaces): - self._dict[path] = Device(interfaces[IWD_DEVICE_INTERFACE]) + self._dict[path] = Device(path, interfaces[IWD_DEVICE_INTERFACE]) def _interfaces_removed_handler(self, path, interfaces): del _dict[path]