summaryrefslogtreecommitdiff
path: root/src/flake8
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2019-07-08 08:54:49 -0700
committerAnthony Sottile <asottile@umich.edu>2019-07-08 09:07:37 -0700
commit7506847c9abaef5ff069a9bd38cd3308a3a45113 (patch)
treeb9aa7757f2cb2a011ced16425e154cc73a1002cc /src/flake8
parent076dfeee372affb1dbe849d12a1cc20f8ea37d40 (diff)
downloadflake8-7506847c9abaef5ff069a9bd38cd3308a3a45113.tar.gz
fix CI build
Diffstat (limited to 'src/flake8')
-rw-r--r--src/flake8/checker.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/flake8/checker.py b/src/flake8/checker.py
index de9aaa0..52a6a70 100644
--- a/src/flake8/checker.py
+++ b/src/flake8/checker.py
@@ -435,8 +435,9 @@ class FileChecker(object):
return plugin["plugin"](**arguments)
except Exception as all_exc:
LOG.critical(
- "Plugin %s raised an unexpected exception", plugin["name"],
- exc_info=True
+ "Plugin %s raised an unexpected exception",
+ plugin["name"],
+ exc_info=True,
)
raise exceptions.PluginExecutionFailed(
plugin=plugin, exception=all_exc