Return name of location to lock instead of serial number. (#2460)

This commit is contained in:
John Arild Berentsen 2016-07-07 03:33:58 +02:00 committed by Paulus Schoutsen
parent 216a756590
commit 3e3d9c881e

View file

@ -39,7 +39,7 @@ class VerisureDoorlock(LockDevice):
@property
def name(self):
"""Return the name of the lock."""
return 'Lock {}'.format(self._id)
return '{}'.format(hub.lock_status[self._id].location)
@property
def state(self):