summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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