mirror of https://github.com/python/cpython
parent
009afb7c90
commit
4f7829e185
|
@ -357,7 +357,7 @@ class ModuleFinder:
|
|||
|
||||
def find_module(self, name, path):
|
||||
if path:
|
||||
fullname = '.'.join(path)+'.'+name
|
||||
fullname = string.join(path, '.')+'.'+name
|
||||
else:
|
||||
fullname = name
|
||||
if fullname in self.excludes:
|
||||
|
|
Loading…
Reference in New Issue