From 345008c6736669b475af081427f080b0683bf540 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 24 Nov 2016 10:15:00 +0100 Subject: [PATCH] Fix docstring (#4564) --- homeassistant/components/sensor/pvoutput.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/sensor/pvoutput.py b/homeassistant/components/sensor/pvoutput.py index 7ee7cbe3969..251c117f191 100644 --- a/homeassistant/components/sensor/pvoutput.py +++ b/homeassistant/components/sensor/pvoutput.py @@ -95,7 +95,7 @@ class PvoutputSensor(Entity): @property def device_state_attributes(self): - """Return the state attributes of the Pi-Hole.""" + """Return the state attributes of the monitored installation.""" if self.pvcoutput is not None: return { ATTR_ENERGY_GENERATION: self.pvcoutput.energy_generation,