summaryrefslogtreecommitdiff
path: root/checkers/exceptions.py
diff options
context:
space:
mode:
authorSylvain <syt@logilab.fr>2007-08-22 09:45:27 +0200
committerSylvain <syt@logilab.fr>2007-08-22 09:45:27 +0200
commit82510d1be0c4bfcc98f3d19b7a629d25b87e327d (patch)
tree8fd65c1e31c4e3d25e4cf673478d99539caac379 /checkers/exceptions.py
parentd9d882ca279c256fdeb806959a99ae81ccabee91 (diff)
downloadpylint-82510d1be0c4bfcc98f3d19b7a629d25b87e327d.tar.gz
doc fixes
Diffstat (limited to 'checkers/exceptions.py')
-rw-r--r--checkers/exceptions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/checkers/exceptions.py b/checkers/exceptions.py
index 932813f..1663915 100644
--- a/checkers/exceptions.py
+++ b/checkers/exceptions.py
@@ -35,11 +35,11 @@ MSGS = {
'W0701': ('Raising a string exception',
'Used when a string exception is raised.'),
- 'W0702': ('No exception\'s type specified',
+ 'W0702': ('No exception type(s) specified',
'Used when an except clause doesn\'t specify exceptions type to \
catch.'),
'W0703': ('Catch "Exception"',
- 'Used when an except catch Exception instances.'),
+ 'Used when an except catches Exception instances.'),
'W0704': ('Except doesn\'t do anything',
'Used when an except clause does nothing but "pass" and there is\
no "else" clause.'),