summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Pribysh <dmand@yandex.ru>2015-10-01 19:51:18 +0300
committerDmitry Pribysh <dmand@yandex.ru>2015-10-01 19:51:18 +0300
commit6204a880df800cf28f326afe2da1454b1a9d60b5 (patch)
tree323cdf783caa2b037af63f86dc638a62d6b72ba9
parentd26780d82fe0d6a0304bb17025a5a773cf187808 (diff)
downloadpylint-6204a880df800cf28f326afe2da1454b1a9d60b5.tar.gz
Change multiple-imports message type to `convention` with code C0410
-rw-r--r--pylint/checkers/imports.py2
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.'),