summaryrefslogtreecommitdiff
path: root/src/flake8
diff options
context:
space:
mode:
authorTomer Keren <tomer.keren.dev@gmail.com>2018-12-31 23:06:37 +0200
committerAnthony Sottile <asottile@umich.edu>2019-01-30 08:55:57 -0800
commitc68e7a8d3e5e2811ae1180846a08f166b8007614 (patch)
tree9f7054a4ca7dea015c88163e9db9b03ed3e22d65 /src/flake8
parentf70ae10c2ba191bef78c723a3404c27d84f13de8 (diff)
downloadflake8-c68e7a8d3e5e2811ae1180846a08f166b8007614.tar.gz
Fix plugin exception reporting keyerror typo
Diffstat (limited to 'src/flake8')
-rw-r--r--src/flake8/checker.py2
1 files changed, 1 insertions, 1 deletions
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