Stop assigning output_fd in Default formatter

This commit is contained in:
Ian Cordasco 2016-02-07 10:44:46 -06:00
parent 0b8f11acc2
commit 2fc853b772
2 changed files with 4 additions and 1 deletions

View file

@ -13,7 +13,6 @@ class Default(base.BaseFormatter):
def after_init(self):
"""Check for a custom format string."""
self.output_fd = None
if self.options.format.lower() != 'default':
self.error_format = self.options.format

View file

@ -174,3 +174,7 @@ def main(argv=None):
# Parse out our options from our found config files and user-provided CLI
# options
options, args = aggregator.aggregate_options(option_manager)
# formatter = formatting_plugins.get(
# options.format, formatting_plugins['default']
# ).execute(options)