diff options
| author | Anthony Sottile <asottile@umich.edu> | 2019-01-30 17:03:26 +0000 |
|---|---|---|
| committer | Anthony Sottile <asottile@umich.edu> | 2019-01-30 17:03:26 +0000 |
| commit | 5707e6e3af144b8fc0407e19032f0a5674ba8d0f (patch) | |
| tree | bbea492d30c261c6627203425bda105cfa47ab13 /src | |
| parent | f70ae10c2ba191bef78c723a3404c27d84f13de8 (diff) | |
| parent | 3579e4e198a44224097c03c68ea9463d0af48bf0 (diff) | |
| download | flake8-5707e6e3af144b8fc0407e19032f0a5674ba8d0f.tar.gz | |
Merge branch 'error_plugin_exception_report' into 'master'
Fix plugin exception reporting keyerror typo
See merge request pycqa/flake8!275
Diffstat (limited to 'src')
| -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 |
