bugfix with args
This commit is contained in:
parent
a37e1a0018
commit
cea76a076d
1 changed files with 1 additions and 1 deletions
|
|
@ -30,7 +30,7 @@ class TableFormatter(IFormatter):
|
||||||
header = None
|
header = None
|
||||||
|
|
||||||
def __init__(self, display_keys=True, return_only=False, result_funcname='get_string'):
|
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
|
self.result_funcname = result_funcname
|
||||||
|
|
||||||
def after_format(self, formatted):
|
def after_format(self, formatted):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue