diff options
author | Ceridwen <ceridwenv@gmail.com> | 2015-11-06 18:06:45 -0500 |
---|---|---|
committer | Ceridwen <ceridwenv@gmail.com> | 2015-11-06 18:06:45 -0500 |
commit | d3d9bcbc91dfb60ee88b1a6667db92fd00172d67 (patch) | |
tree | 8914463c13eefded8295783455f2ec94b86919cd /astroid/manager.py | |
parent | 3dcb8ed17e9dd97ae1c39e5d9f743cf5e46861d1 (diff) | |
download | astroid-git-d3d9bcbc91dfb60ee88b1a6667db92fd00172d67.tar.gz |
Rename Uninferable and instatiate_class
Diffstat (limited to 'astroid/manager.py')
-rw-r--r-- | astroid/manager.py | 2 |
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. |