mirror of
https://github.com/python/cpython.git
synced 2025-07-16 07:45:20 +00:00
make sure the path ends in a slash in reload()
This commit is contained in:
parent
fe4254eb08
commit
1035a892a1
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue