summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Fayolle <alexandre.fayolle@logilab.fr>2010-06-03 09:42:31 +0200
committerAlexandre Fayolle <alexandre.fayolle@logilab.fr>2010-06-03 09:42:31 +0200
commit9746a4d587f097e2ef064b0bbf2b89889116cadc (patch)
tree85db4a5c03d9ac5439b09b48c72936899a4d8e51
parentd06bfc74aafffe8af86122813bcb9826274661e1 (diff)
downloadpylint-9746a4d587f097e2ef064b0bbf2b89889116cadc.tar.gz
revert wrong change in bd55301fc4b1
-rw-r--r--checkers/imports.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/checkers/imports.py b/checkers/imports.py
index 38d5218..aa374be 100644
--- a/checkers/imports.py
+++ b/checkers/imports.py
@@ -125,7 +125,7 @@ def make_graph(filename, dep_info, sect, gtype):
MSGS = {
'F0401': ('Unable to import %r' ,
'Used when pylint has been unable to import a module.'),
- 'RP0401': ('Cyclic import (%s)',
+ 'R0401': ('Cyclic import (%s)',
'Used when a cyclic import between two or more modules is \
detected.'),