diff options
author | Emile Anclin <emile.anclin@logilab.fr> | 2010-12-02 17:50:56 +0100 |
---|---|---|
committer | Emile Anclin <emile.anclin@logilab.fr> | 2010-12-02 17:50:56 +0100 |
commit | 10f72783077d5ceaa90944e19e54acb5af9bc0ba (patch) | |
tree | c3185ed9308b689b1472cd6420f449bacd068bf7 /node_classes.py | |
parent | 957735efa408c22a8c6702f42d076d3b3458f9b0 (diff) | |
download | astroid-git-10f72783077d5ceaa90944e19e54acb5af9bc0ba.tar.gz |
py3k: fix some obvious stuff
Diffstat (limited to 'node_classes.py')
-rw-r--r-- | node_classes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/node_classes.py b/node_classes.py index a67c416f..0fc83745 100644 --- a/node_classes.py +++ b/node_classes.py @@ -690,8 +690,8 @@ class Raise(Statement): tback = None else: _astng_fields = ('exc', 'cause') - inst = None - tback = None + exc = None + cause = None def raises_not_implemented(self): if not self.exc: |