diff options
author | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2013-07-24 08:52:20 +0200 |
---|---|---|
committer | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2013-07-24 08:52:20 +0200 |
commit | 9427929322c30b7640523c4611c72717904227cc (patch) | |
tree | eacbf9631ef01d9793f7ffbbbdc0875d8e904375 /inference.py | |
parent | ba2393d46474b72bb04b50dce629a9fa2bd6c7c5 (diff) | |
download | astroid-git-9427929322c30b7640523c4611c72717904227cc.tar.gz |
rename all astroid_from* method, introduced by sed, into ast_from*
Diffstat (limited to 'inference.py')
-rw-r--r-- | inference.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inference.py b/inference.py index ce6dd6c7..29c97be5 100644 --- a/inference.py +++ b/inference.py @@ -375,7 +375,7 @@ def infer_empty_node(self, context=None): yield YES else: try: - for infered in MANAGER.infer_astroid_from_something(self.object, + for infered in MANAGER.infer_ast_from_something(self.object, context=context): yield infered except AstroidError: |