From c68e7a8d3e5e2811ae1180846a08f166b8007614 Mon Sep 17 00:00:00 2001 From: Tomer Keren Date: Mon, 31 Dec 2018 23:06:37 +0200 Subject: [PATCH] Fix plugin exception reporting keyerror typo --- src/flake8/checker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flake8/checker.py b/src/flake8/checker.py index ce33737..5379362 100644 --- a/src/flake8/checker.py +++ b/src/flake8/checker.py @@ -446,7 +446,7 @@ class FileChecker(object): "Plugin %s raised an unexpected exception", plugin["name"] ) raise exceptions.PluginExecutionFailed( - plugin=plugin, excetion=all_exc + plugin=plugin, exception=all_exc ) @staticmethod