mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-21 22:09:23 +01:00
auto-t: allow printing devices in AP mode
The __str__ function assumed station mode which throws an exception if the device is in AP mode. Fix this as well as print out the mode the device is in.
This commit is contained in:
parent
8bc871ba62
commit
1f9d9e1eb1
@ -690,14 +690,17 @@ class Device(IWDDBusAbstract):
|
||||
return self._device_provisioning.stop()
|
||||
|
||||
def __str__(self, prefix = ''):
|
||||
return prefix + 'Device: ' + self.device_path + '\n'\
|
||||
s = prefix + 'Device: ' + self.device_path + '\n'\
|
||||
+ prefix + '\tName:\t\t' + self.name + '\n'\
|
||||
+ prefix + '\tAddress:\t' + self.address + '\n'\
|
||||
+ prefix + '\tState:\t\t' + str(self.state) + '\n'\
|
||||
+ prefix + '\tAddress:\t' + self.address + '\n' \
|
||||
+ prefix + '\tPowered:\t' + str(self.powered) + '\n'\
|
||||
+ prefix + '\tConnected net:\t' + str(self.connected_network) +\
|
||||
'\n'
|
||||
+ prefix + '\tMode:\t\t' + self._properties['Mode'] + '\n'
|
||||
|
||||
if self._properties['Mode'] == 'station':
|
||||
s += prefix + '\tState:\t\t' + str(self.state) + '\n'\
|
||||
+ prefix + '\tConnected net:\t' + str(self.connected_network) + '\n'
|
||||
|
||||
return s
|
||||
|
||||
class Network(IWDDBusAbstract):
|
||||
'''Class represents a network object: net.connman.iwd.Network'''
|
||||
|
Loading…
Reference in New Issue
Block a user