mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Remove the only use of a string method.
Fixes SF 564840.
This commit is contained in:
parent
009afb7c90
commit
4f7829e185
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue