summaryrefslogtreecommitdiff
path: root/astroid/objects.py
diff options
context:
space:
mode:
authorCeridwen <ceridwenv@gmail.com>2015-08-18 17:51:21 -0400
committerCeridwen <ceridwenv@gmail.com>2015-08-18 17:51:21 -0400
commit57551b823a3f1b68085d02f6f6321dbe84e1d074 (patch)
treeccf728d96cc2e3c34d84f366a96fcda3b0f409eb /astroid/objects.py
parent0adbb4f00809a2f7a3e61299f8e2c8bd6a816bed (diff)
downloadastroid-git-57551b823a3f1b68085d02f6f6321dbe84e1d074.tar.gz
More fixes for bugs introduced during merge
Diffstat (limited to 'astroid/objects.py')
-rw-r--r--astroid/objects.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/objects.py b/astroid/objects.py
index 9ae21f3a..a38c2ee2 100644
--- a/astroid/objects.py
+++ b/astroid/objects.py
@@ -22,7 +22,7 @@ which are used only as inference results, so they can't be found in the
original AST tree. For instance, inferring the following frozenset use,
leads to an inferred FrozenSet:
- CallFunc(func=Name('frozenset'), args=Tuple(...))
+ Call(func=Name('frozenset'), args=Tuple(...))
"""