summaryrefslogtreecommitdiff
path: root/bases.py
diff options
context:
space:
mode:
authorEmile Anclin <emile.anclin@logilab.fr>2010-09-22 15:05:42 +0200
committerEmile Anclin <emile.anclin@logilab.fr>2010-09-22 15:05:42 +0200
commitdbeaad5988d27f5fd56a278e70a8c7995c87ff7c (patch)
tree8833c2c86dfca6bfa91aebbe18817fe2e10ab677 /bases.py
parente2f48476e242dcee95a6de024c937720c39ed29b (diff)
downloadastroid-git-dbeaad5988d27f5fd56a278e70a8c7995c87ff7c.tar.gz
py2.3 compat : syntax, set; _nodes_compiler.py : fix visit_discard
--HG-- branch : stable
Diffstat (limited to 'bases.py')
-rw-r--r--bases.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bases.py b/bases.py
index ea3c9c6c..8422d676 100644
--- a/bases.py
+++ b/bases.py
@@ -51,8 +51,8 @@ except ImportError:
pass
from logilab.common.compat import set
-from logilab.astng._exceptions import (InferenceError, ASTNGError,
- NotFoundError, UnresolvableName)
+from logilab.astng._exceptions import InferenceError, ASTNGError, \
+ NotFoundError, UnresolvableName
class Proxy(BaseClass):