make sure the path ends in a slash in reload()

This commit is contained in:
Guido van Rossum 1995-08-11 13:56:04 +00:00
parent fe4254eb08
commit 1035a892a1
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ class RModuleImporter(ihooks.ModuleImporter):
def reload(self, module, path=None):
if path is None and hasattr(module, '__filename__'):
head, tail = os.path.split(module.__filename__)
path = [head]
path = [os.path.join(head, '')]
return ihooks.ModuleImporter.reload(self, module, path)