summaryrefslogtreecommitdiff
path: root/astroid/node_classes.py
diff options
context:
space:
mode:
authorCeridwen <ceridwenv@gmail.com>2015-09-09 23:40:28 -0400
committerCeridwen <ceridwenv@gmail.com>2015-09-09 23:40:28 -0400
commit3db6aee99be618bad1ff37edca52f34df27f7397 (patch)
tree73d0ffeea9faa5f7c97712954bc6e2ed19d00b53 /astroid/node_classes.py
parent8e747ae2a9a5d0f9c8005e2444bb2c6734209621 (diff)
downloadastroid-3db6aee99be618bad1ff37edca52f34df27f7397.tar.gz
First draft of improved state printing
Diffstat (limited to 'astroid/node_classes.py')
-rw-r--r--astroid/node_classes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/node_classes.py b/astroid/node_classes.py
index 93e7dc7..4c958a1 100644
--- a/astroid/node_classes.py
+++ b/astroid/node_classes.py
@@ -923,7 +923,7 @@ class ImportFrom(mixins.ImportFromMixin, bases.Statement):
class Attribute(bases.NodeNG):
"""class representing a Attribute node"""
_astroid_fields = ('expr',)
- _other_fields = ('attrname')
+ _other_fields = ('attrname',)
expr = None
def __init__(self, attrname=None, lineno=None, col_offset=None, parent=None):