auto-t: Convert net type to str for dbus

This commit is contained in:
Tim Kourt 2016-10-04 16:26:40 -07:00 committed by Denis Kenzior
parent cb114a649f
commit 21b42a0ff4
1 changed files with 1 additions and 1 deletions

View File

@ -593,7 +593,7 @@ class IWD(AsyncOpAbstract):
removes any associated meta-data. If the network is
currently connected, then it is automatically disconnected'''
self._known_network_manager.ForgetNetwork(
known_network.name, known_network.type,
known_network.name, str(known_network.type),
dbus_interface=IWD_KNOWN_NETWORKS_INTERFACE,
reply_handler=self._success,
error_handler=self._failure)