From 9d860bd5b147e86a77e974917bf3b5853b7aa48d Mon Sep 17 00:00:00 2001 From: Eduardo Silva Date: Fri, 6 Jul 2007 16:26:59 -0400 Subject: [PATCH] Fix battery var, thanks to RWH --- shell/view/devices/battery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/view/devices/battery.py b/shell/view/devices/battery.py index 8b0ba298..37ea9f04 100644 --- a/shell/view/devices/battery.py +++ b/shell/view/devices/battery.py @@ -47,7 +47,7 @@ class DeviceView(canvasicon.CanvasIcon): if self._model.props.charging: status = _STATUS_CHARING elif self._model.props.discharging: - status = _STATUS_DISCHARING + status = _STATUS_DISCHARGING else: status = _STATUS_FULLY_CHARGED