Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2007-07-10 17:17:02 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-07-10 17:17:02 (GMT)
commit61a080a6938ff6098e1bca1aa4e48cab9f17de51 (patch)
tree8c856a0a4dd142ffd848b7adfc7e5591536c2aea
parentc1fa54c0c0ad04ed2f917f8a3ee34bc5b3e09cfd (diff)
Make developer console work again.
-rw-r--r--NEWS1
-rw-r--r--services/console/interface/xo/xo.py2
2 files changed, 1 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 88df96e..32ed8df 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,4 @@
+* Make developer console work again. (marco)
* #2020 Use the new activity-stop icon. (marco)
* #2002 Tooltips for the zoom levels. (marco)
* #2018 Rename Save to Keep. (marco)
diff --git a/services/console/interface/xo/xo.py b/services/console/interface/xo/xo.py
index 63bba0b..d205605 100644
--- a/services/console/interface/xo/xo.py
+++ b/services/console/interface/xo/xo.py
@@ -23,7 +23,6 @@ import string
from cpu import XO_CPU
from system import XO_System
-from battery import XO_Battery
from nandflash import XO_NandFlash
class Interface:
@@ -52,7 +51,6 @@ class Interface:
gobject.timeout_add(5000, self._update_components)
def _update_components(self):
- self._xo_battery.update_status()
self._xo_nandflash.update_status()
return True