diff options
| author | Tomer Keren <tomer.keren.dev@gmail.com> | 2018-12-31 23:06:37 +0200 |
|---|---|---|
| committer | Anthony Sottile <asottile@umich.edu> | 2019-01-30 08:55:57 -0800 |
| commit | c68e7a8d3e5e2811ae1180846a08f166b8007614 (patch) | |
| tree | 9f7054a4ca7dea015c88163e9db9b03ed3e22d65 /src/flake8 | |
| parent | f70ae10c2ba191bef78c723a3404c27d84f13de8 (diff) | |
| download | flake8-c68e7a8d3e5e2811ae1180846a08f166b8007614.tar.gz | |
Fix plugin exception reporting keyerror typo
Diffstat (limited to 'src/flake8')
| -rw-r--r-- | src/flake8/checker.py | 2 |
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 |
