From 9d79bd7b01b8a66a48de4f4b12148e81833b4022 Mon Sep 17 00:00:00 2001 From: Sebastian Spaeth Date: Fri, 6 Jan 2012 14:02:22 +0100 Subject: [PATCH] Fix regression of MachineUI The recent UI overhaul led to the breakage of the machineui. This bug fixes that. Signed-off-by: Sebastian Spaeth --- Changelog.draft.rst | 2 ++ offlineimap/ui/Machine.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Changelog.draft.rst b/Changelog.draft.rst index 76a0ea3..5a113b2 100644 --- a/Changelog.draft.rst +++ b/Changelog.draft.rst @@ -18,3 +18,5 @@ Changes Bug Fixes --------- + +* Fix regression that broke MachineUI diff --git a/offlineimap/ui/Machine.py b/offlineimap/ui/Machine.py index 868433a..0a51bcc 100644 --- a/offlineimap/ui/Machine.py +++ b/offlineimap/ui/Machine.py @@ -43,7 +43,7 @@ class MachineUI(UIBase): 'warn', '', currentThread().getName(), msg)) def registerthread(self, account): - super(MachineUI, self).registerthread(self, account) + super(MachineUI, self).registerthread(account) self._printData('registerthread', account) def unregisterthread(s, thread):