From dd0c50dbcea017a5d5483dc784df81e33b644c17 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Tue, 10 May 2016 14:17:23 -0500 Subject: [PATCH] Ensure we provide options to all plugins --- flake8/main/cli.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/flake8/main/cli.py b/flake8/main/cli.py index e168bef..6991fb0 100644 --- a/flake8/main/cli.py +++ b/flake8/main/cli.py @@ -300,6 +300,12 @@ class Application(object): self.check_plugins.provide_options(self.option_manager, self.options, self.args) + self.listening_plugins.provide_options(self.option_manager, + self.options, + self.args) + self.formatting_plugins.provide_options(self.option_manager, + self.options, + self.args) def make_formatter(self): # type: () -> NoneType