Commit 4f7829e1 authored by Thomas Heller's avatar Thomas Heller

Remove the only use of a string method.

Fixes SF 564840.
parent 009afb7c
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment