summaryrefslogtreecommitdiff
path: root/astroid/manager.py
diff options
context:
space:
mode:
authorCeridwen <ceridwenv@gmail.com>2015-11-06 18:06:45 -0500
committerCeridwen <ceridwenv@gmail.com>2015-11-06 18:06:45 -0500
commitd3d9bcbc91dfb60ee88b1a6667db92fd00172d67 (patch)
tree8914463c13eefded8295783455f2ec94b86919cd /astroid/manager.py
parent3dcb8ed17e9dd97ae1c39e5d9f743cf5e46861d1 (diff)
downloadastroid-git-d3d9bcbc91dfb60ee88b1a6667db92fd00172d67.tar.gz
Rename Uninferable and instatiate_class
Diffstat (limited to 'astroid/manager.py')
-rw-r--r--astroid/manager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/manager.py b/astroid/manager.py
index c14125fe..0f6673d2 100644
--- a/astroid/manager.py
+++ b/astroid/manager.py
@@ -252,7 +252,7 @@ class AstroidManager(object):
yield inferred
else:
for inferred in modastroid.igetattr(name, context):
- yield inferred.instanciate_class()
+ yield inferred.instantiate_class()
def register_failed_import_hook(self, hook):
"""Registers a hook to resolve imports that cannot be found otherwise.