summaryrefslogtreecommitdiff
path: root/pylint/utils.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-09-05 15:24:35 +0300
committerClaudiu Popa <pcmanticore@gmail.com>2015-09-05 15:24:35 +0300
commit4a1c791a46d90d8ef2d74cc8fbd291fc1b52deb6 (patch)
treebab95f38acdbb84c72be5a6f2076c8c3cb3b12e9 /pylint/utils.py
parentdb048da44f22ae5ce7eba93e0492a69842d2e856 (diff)
downloadpylint-4a1c791a46d90d8ef2d74cc8fbd291fc1b52deb6.tar.gz
Bring logilab-common's ureports into pylint.reporters.
With this change, we moved away from depending on logilab-common, having in Pylint all the components that were used from logilab-common. The API should be considered an implementation detail and can change at some point in the future. Closes issue #621.
Diffstat (limited to 'pylint/utils.py')
-rw-r--r--pylint/utils.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pylint/utils.py b/pylint/utils.py
index 356868b..ea844b2 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):