diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 13:39:27 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 13:39:27 -0500 |
commit | 4354d6ee80c81d390052c15092c7c51f2318f2f6 (patch) | |
tree | bb6f5f9bc8f2454005818209aac41ccfbd33f3f2 /setup.py | |
parent | d9753ec0667b8a8eec1c8e1174e9406c99f7af4d (diff) | |
download | python-coveragepy-git-4354d6ee80c81d390052c15092c7c51f2318f2f6.tar.gz |
Clean up some pylint messages
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -47,7 +47,7 @@ import os, sys from setuptools import setup 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.command.build_ext import build_ext # pylint: disable=no-name-in-module, import-error from distutils import errors # pylint: disable=no-name-in-module # Get or massage our metadata. We exec coverage/version.py so we can avoid |