Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4f7829e

Browse files
author
Thomas Heller
committed
Remove the only use of a string method.
Fixes SF 564840.
1 parent 009afb7 commit 4f7829e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tools/freeze/modulefinder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ def add_module(self, fqname):
357357

358358
def find_module(self, name, path):
359359
if path:
360-
fullname = '.'.join(path)+'.'+name
360+
fullname = string.join(path, '.')+'.'+name
361361
else:
362362
fullname = name
363363
if fullname in self.excludes:

0 commit comments

Comments
 (0)