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
commitd59fbbd2b15169d59714564935252cea7b57ec7c (patch)
tree8abd470ab413c2b3c70e6ed945dc621898b40b5b /astroid/objects.py
parent9b3004d81cc638a865f918bcb61c0881656dc94c (diff)
downloadastroid-d59fbbd2b15169d59714564935252cea7b57ec7c.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 9ae21f3..a38c2ee 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(...))
"""