From 774cfba1c420dd9208a3329635fd11d53c958575 Mon Sep 17 00:00:00 2001 From: Tim Kourt Date: Thu, 26 Oct 2017 13:26:00 -0700 Subject: [PATCH] auto-t: add NotConfigured dbus exception --- autotests/util/iwd.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/autotests/util/iwd.py b/autotests/util/iwd.py index 6040b4a7..46aa1b69 100755 --- a/autotests/util/iwd.py +++ b/autotests/util/iwd.py @@ -49,6 +49,7 @@ class NotFoundEx(dbus.DBusException): pass class NotSupportedEx(dbus.DBusException): pass class NoAgentEx(dbus.DBusException): pass class NotConnectedEx(dbus.DBusException): pass +class NotConfiguredEx(dbus.DBusException): pass class NotImplementedEx(dbus.DBusException): pass class CanceledEx(dbus.DBusException): _dbus_error_name = 'net.connman.iwd.Error.Canceled' @@ -66,6 +67,7 @@ _dbus_ex_to_py = { 'NotSupported' : NotSupportedEx, 'NoAgent' : NoAgentEx, 'NotConnected' : NotConnectedEx, + 'NotConfigured' : NotConfiguredEx, 'NotImplemented' : NotImplementedEx, }