use string formatting

This commit is contained in:
Fabian Affolter 2015-06-01 13:49:08 +02:00
parent da68e4ab11
commit 9d1e881f12

View File

@ -77,7 +77,7 @@ class SwissPublicTransportSensor(Entity):
def __init__(self, data, journey):
self.data = data
self._name = journey[2] + '-' + journey[3]
self._name = '{}-{}'.format(journey[2], journey[3])
self.update()
@property