diff options
Diffstat (limited to 'pylint/checkers')
-rw-r--r-- | pylint/checkers/imports.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/imports.py b/pylint/checkers/imports.py index ae8df55..0be2b2c 100644 --- a/pylint/checkers/imports.py +++ b/pylint/checkers/imports.py @@ -174,7 +174,7 @@ MSGS = { 'Python 2.5 and greater require __future__ import to be the \ first non docstring statement in the module.'), - 'W0411': ('Multiple imports on one line (%s)', + 'C0410': ('Multiple imports on one line (%s)', 'multiple-imports', 'Used when import statement importing multiple modules is ' 'detected.'), |