@@ -78,18 +78,18 @@ def format_output(self, data, headers, format_name=None, **kwargs):
7878
7979for delimiter_format in delimited_output_adapter .supported_formats :
8080 OutputFormatter .register_new_formatter (
81- delimiter_format , delimited_output_adapter .delimiter_adapter ,
82- delimited_output_adapter .delimiter_preprocessors ,
81+ delimiter_format , delimited_output_adapter .adapter ,
82+ delimited_output_adapter .preprocessors ,
8383 {'table_format' : delimiter_format , 'missing_value' : MISSING_VALUE })
8484
8585for tabulate_format in tabulate_adapter .supported_formats :
8686 OutputFormatter .register_new_formatter (
87- tabulate_format , tabulate_adapter .tabulate_adapter ,
87+ tabulate_format , tabulate_adapter .adapter ,
8888 tabulate_adapter .preprocessors ,
8989 {'table_format' : tabulate_format , 'missing_value' : MISSING_VALUE })
9090
9191for terminaltables_format in terminaltables_adapter .supported_formats :
9292 OutputFormatter .register_new_formatter (
93- terminaltables_format , terminaltables_adapter .terminaltables_adapter ,
93+ terminaltables_format , terminaltables_adapter .adapter ,
9494 terminaltables_adapter .preprocessors ,
9595 {'table_format' : terminaltables_format , 'missing_value' : MISSING_VALUE })
0 commit comments