diff options
author | Sylvain <syt@logilab.fr> | 2006-10-03 09:55:44 +0200 |
---|---|---|
committer | Sylvain <syt@logilab.fr> | 2006-10-03 09:55:44 +0200 |
commit | ee5e63335a816a4700039c21603a480b9195ae57 (patch) | |
tree | e68491f36ae3a55a88dd8eea4918c1ca5999cf8d /checkers/design_analysis.py | |
parent | 945e43f72380d1bd1c94d5edbca7982f4a4f9a5c (diff) | |
download | pylint-ee5e63335a816a4700039c21603a480b9195ae57.tar.gz |
apply skip's patch
Diffstat (limited to 'checkers/design_analysis.py')
-rw-r--r-- | checkers/design_analysis.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/checkers/design_analysis.py b/checkers/design_analysis.py index 7623979..5c43acc 100644 --- a/checkers/design_analysis.py +++ b/checkers/design_analysis.py @@ -20,8 +20,6 @@ FIXME: missing 13, 15, 16 """ -__revision__ = "$Id: design_analysis.py,v 1.11 2005-12-30 15:41:29 adim Exp $" - from logilab.astng import Function, InferenceError from pylint.interfaces import IASTNGChecker @@ -45,8 +43,8 @@ MSGS = { 'R0902': ('Too many instance attributes (%s/%s)', 'Used when class has too many instance attributes, try to reduce \ this to get a more simple (and so easier to use) class.'), - 'R0903': ('To few public methods (%s/%s)', - 'Used when class has to few public methods, so be sure it\'s \ + 'R0903': ('Too few public methods (%s/%s)', + 'Used when class has too few public methods, so be sure it\'s \ really worth it.'), 'R0904': ('Too many public methods (%s/%s)', 'Used when class has too many public methods, try to reduce \ |