diff options
| author | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-07-25 19:57:13 +0000 |
|---|---|---|
| committer | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-07-25 19:57:13 +0000 |
| commit | 427c4b53ef349cb31ff7beafdfe6ca9f955fe02d (patch) | |
| tree | f053b744e86347bc2c553ba319d23e1ea02abde5 /src | |
| parent | 232ef0ed3126f61f85e933b5edda31599b0086b5 (diff) | |
| parent | 559e08a09f6753a5d2c3630bd5e60294afee5815 (diff) | |
| download | flake8-427c4b53ef349cb31ff7beafdfe6ca9f955fe02d.tar.gz | |
Merge branch 'bug/output-file' into 'master'
Set-up and stop our formatter
*Description of changes*
Make `--output-file` work consistently (especially without verbose logging)
*Related to:* #180
See merge request !86
Diffstat (limited to 'src')
| -rw-r--r-- | src/flake8/main/application.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/flake8/main/application.py b/src/flake8/main/application.py index febe6c7..8269dc1 100644 --- a/src/flake8/main/application.py +++ b/src/flake8/main/application.py @@ -284,8 +284,10 @@ class Application(object): # type: (Union[NoneType, List[str]]) -> NoneType self.initialize(argv) self.run_checks() + self.formatter.start() self.report_errors() self.report_benchmarks() + self.formatter.stop() def run(self, argv=None): # type: (Union[NoneType, List[str]]) -> NoneType |
