Fix regression of MachineUI

The recent UI overhaul led to the breakage of the machineui. This bug
fixes that.

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
This commit is contained in:
Sebastian Spaeth 2012-01-06 14:02:22 +01:00
parent b569ef551f
commit 9d79bd7b01
2 changed files with 3 additions and 1 deletions

View File

@ -18,3 +18,5 @@ Changes
Bug Fixes Bug Fixes
--------- ---------
* Fix regression that broke MachineUI

View File

@ -43,7 +43,7 @@ class MachineUI(UIBase):
'warn', '', currentThread().getName(), msg)) 'warn', '', currentThread().getName(), msg))
def registerthread(self, account): def registerthread(self, account):
super(MachineUI, self).registerthread(self, account) super(MachineUI, self).registerthread(account)
self._printData('registerthread', account) self._printData('registerthread', account)
def unregisterthread(s, thread): def unregisterthread(s, thread):