summaryrefslogtreecommitdiff
path: root/pycodestyle.py
diff options
context:
space:
mode:
Diffstat (limited to 'pycodestyle.py')
-rwxr-xr-xpycodestyle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pycodestyle.py b/pycodestyle.py
index d31ac9e..dc486c8 100755
--- a/pycodestyle.py
+++ b/pycodestyle.py
@@ -1280,7 +1280,7 @@ def bare_except(logical_line, noqa):
regex = re.compile(r"except\s*:")
match = regex.match(logical_line)
if match:
- yield match.start(), "E722 do not use bare except'"
+ yield match.start(), "E722 do not use bare 'except'"
@register_check