From cea76a076d263033b391da1378d1092c3c4ffb69 Mon Sep 17 00:00:00 2001 From: Christophe Benz Date: Mon, 2 Aug 2010 16:35:29 +0200 Subject: [PATCH] bugfix with args --- weboob/tools/application/formatters/table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weboob/tools/application/formatters/table.py b/weboob/tools/application/formatters/table.py index 21267f52..3b74ca6f 100644 --- a/weboob/tools/application/formatters/table.py +++ b/weboob/tools/application/formatters/table.py @@ -30,7 +30,7 @@ class TableFormatter(IFormatter): header = None def __init__(self, display_keys=True, return_only=False, result_funcname='get_string'): - IFormatter.__init__(self, display_keys, return_only) + IFormatter.__init__(self, display_keys=display_keys, return_only=return_only) self.result_funcname = result_funcname def after_format(self, formatted):