diff options
Diffstat (limited to 'pylint/utils.py')
-rw-r--r-- | pylint/utils.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pylint/utils.py b/pylint/utils.py index 356868b50..ea844b2d9 100644 --- a/pylint/utils.py +++ b/pylint/utils.py @@ -30,13 +30,12 @@ from os.path import dirname, basename, splitext, exists, isdir, join, normpath import six from six.moves import zip # pylint: disable=redefined-builtin -from logilab.common.ureports import Section - from astroid import nodes, Module from astroid.modutils import modpath_from_file, get_module_files, \ file_from_modpath, load_module_from_file from pylint.interfaces import IRawChecker, ITokenChecker, UNDEFINED, implements +from pylint.reporters.ureports.nodes import Section class UnknownMessage(Exception): |