summaryrefslogtreecommitdiff
path: root/__init__.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
commit3fc0d3116ca78b616ba7105a91f5ee6caf2d62b4 (patch)
treec45650542a392c94b3ef0b78e51ee03c343c00f4 /__init__.py
parenta3304a6ccc7a193c266302df3229629a2815d245 (diff)
downloadastroid-3fc0d3116ca78b616ba7105a91f5ee6caf2d62b4.tar.gz
reduce circular imports I: import exceptions directly
- rename exceptions module: it's exported to Pylint anyway
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/__init__.py b/__init__.py
index 840c53c..62de81b 100644
--- a/__init__.py
+++ b/__init__.py
@@ -60,7 +60,7 @@ __doctype__ = "restructuredtext en"
# WARNING: internal imports order matters !
# make all exception classes accessible from astng package
-from logilab.astng._exceptions import *
+from logilab.astng.exceptions import *
# make all node classes accessible from astng package
from logilab.astng.nodes import *