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
commitcc7ea53df2383cd188e2b0958b231e1eb70fc79c (patch)
treea8170ee5867f49721c3d071c322ef3815cc608b9 /astroid/manager.py
parent67dc5fda9c487bbbe6b3ac1e98af76b63d13396e (diff)
downloadastroid-cc7ea53df2383cd188e2b0958b231e1eb70fc79c.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 c14125f..0f6673d 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.