summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-11-23 06:43:15 -0500
committerNed Batchelder <ned@nedbatchelder.com>2014-11-23 06:43:15 -0500
commitd0a872c92e0e8c6ebb9530c2b61f2b9582612fb4 (patch)
treed2dee99e59bb7d0048f3152695baea7b7e01421b /setup.py
parent29356409a6827e78d3f5aa18d9a7939bee7b6fca (diff)
downloadpython-coveragepy-d0a872c92e0e8c6ebb9530c2b61f2b9582612fb4.tar.gz
Change all pylint message codes to message names
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index 18fa903..7139ce3 100644
--- a/setup.py
+++ b/setup.py
@@ -46,9 +46,9 @@ Topic :: Software Development :: Testing
import os, sys
from setuptools import setup
-from distutils.core import Extension # pylint: disable=E0611,F0401
-from distutils.command.build_ext import build_ext # pylint: disable=E0611
-from distutils import errors # pylint: disable=E0611
+from distutils.core import Extension # pylint: disable=no-name-in-module,import-error
+from distutils.command.build_ext import build_ext # pylint: disable=no-name-in-module
+from distutils import errors # pylint: disable=no-name-in-module
# Get or massage our metadata. We exec coverage/version.py so we can avoid
# importing the product code into setup.py.