diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 06:43:15 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 06:43:15 -0500 |
commit | d0a872c92e0e8c6ebb9530c2b61f2b9582612fb4 (patch) | |
tree | d2dee99e59bb7d0048f3152695baea7b7e01421b /setup.py | |
parent | 29356409a6827e78d3f5aa18d9a7939bee7b6fca (diff) | |
download | python-coveragepy-d0a872c92e0e8c6ebb9530c2b61f2b9582612fb4.tar.gz |
Change all pylint message codes to message names
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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. |