Fix inverted logic.

This commit is contained in:
David Wilson 2017-09-22 13:39:20 +05:30
parent d553295135
commit 60ed8525b0
1 changed files with 1 additions and 1 deletions

View File

@ -388,7 +388,7 @@ class ModuleFinder(object):
module to be loaded that is not part of the standard library. module to be loaded that is not part of the standard library.
""" """
related = self._related_cache.get(fullname) related = self._related_cache.get(fullname)
if related is None: if related is not None:
return related return related
_, src, _ = self.get_module_source(fullname) _, src, _ = self.get_module_source(fullname)