]> granicus.if.org Git - python/commitdiff
Remove the only use of a string method.
authorThomas Heller <theller@ctypes.org>
Mon, 10 Jun 2002 20:05:48 +0000 (20:05 +0000)
committerThomas Heller <theller@ctypes.org>
Mon, 10 Jun 2002 20:05:48 +0000 (20:05 +0000)
Fixes SF 564840.

Tools/freeze/modulefinder.py

index 924c3a4aa3632dcdd9fbc0a8c72acbc5a1da54fa..741ef4d9266fc0141c427dadf06bf1dfdb2a2558 100644 (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: