diff --git a/homeassistant/components/switch/dlink.py b/homeassistant/components/switch/dlink.py index 31b63db7f79..c8c330a6f4c 100644 --- a/homeassistant/components/switch/dlink.py +++ b/homeassistant/components/switch/dlink.py @@ -87,7 +87,7 @@ class SmartPlugSwitch(SwitchDevice): current_consumption = STATE_UNKNOWN try: - total_consumption = "%.1f W" % \ + total_consumption = "%.1f kWh" % \ float(self.smartplug.total_consumption) except ValueError: total_consumption = STATE_UNKNOWN