summaryrefslogtreecommitdiff
path: root/manager.py
diff options
context:
space:
mode:
authorEmile Anclin <emile.anclin@logilab.fr>2010-12-02 10:53:33 +0100
committerEmile Anclin <emile.anclin@logilab.fr>2010-12-02 10:53:33 +0100
commit47a17eee2201e7c878ed75cd67c3fdae13dbe8e3 (patch)
tree45b126a827d64b4565c241935df3ca4a77074d84 /manager.py
parentfb64c733945e719d8b5d3f5e467cb0c0b01a0fb0 (diff)
downloadastroid-git-47a17eee2201e7c878ed75cd67c3fdae13dbe8e3.tar.gz
reduce circular imports I: import exceptions directly
- rename exceptions module: it's exported to Pylint anyway
Diffstat (limited to 'manager.py')
-rw-r--r--manager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/manager.py b/manager.py
index 836d0c23..c496f9ae 100644
--- a/manager.py
+++ b/manager.py
@@ -46,7 +46,7 @@ from logilab.common.modutils import NoSourceFile, is_python_source, \
get_module_files, get_source_file, zipimport
from logilab.common.configuration import OptionsProviderMixIn
-from logilab.astng._exceptions import ASTNGBuildingException
+from logilab.astng.exceptions import ASTNGBuildingException
def astng_wrapper(func, modname):
"""wrapper to give to ASTNGManager.project_from_files"""