1
0
forked from VimPlug/jedi

path_for_name -> get_path_for_name

This commit is contained in:
Dave Halter
2017-04-30 03:03:58 +02:00
parent e2d6c39ede
commit 1295d73efd
2 changed files with 2 additions and 2 deletions

View File

@@ -642,7 +642,7 @@ class WithStmt(Flow):
class Import(PythonBaseNode):
__slots__ = ()
def path_for_name(self, name):
def get_path_for_name(self, name):
try:
# The name may be an alias. If it is, just map it back to the name.
name = self.aliases()[name]