Remove the only use of a string method.

Fixes SF 564840.
This commit is contained in:
Thomas Heller 2002-06-10 20:05:48 +00:00
parent 009afb7c90
commit 4f7829e185
1 changed files with 1 additions and 1 deletions

View File

@ -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: