From 79c48b21ca52a006f015204a2c99450761393bda Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Tue, 2 Mar 2010 20:37:41 +0000 Subject: [PATCH] fix incorrect method signature --- terminatorlib/container.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminatorlib/container.py b/terminatorlib/container.py index e45b07fa..3c87c17d 100755 --- a/terminatorlib/container.py +++ b/terminatorlib/container.py @@ -83,7 +83,7 @@ class Container(object): """Remove a widget from the container""" raise NotImplementedError('remove') - def hoover(self, widget): + def hoover(self): """Ensure we still have a reason to exist""" raise NotImplementedError('hoover')