Fixed the last changeset.

This commit is contained in:
Armin Ronacher 2014-04-11 13:31:57 +02:00
parent 9554844e2a
commit a293b99b21

View file

@ -667,8 +667,8 @@ def _matching_loader_thinks_module_is_package(loader, mod_name):
# importlib's namespace loaders do not have this functionality but
# all the modules it loads are packages, so we can take advantage of
# this information.
elif (loader.__module__ == '_frozen_importlib' and
loader.__name__ == 'NamespaceLoader'):
elif (loader.__class__.__module__ == '_frozen_importlib' and
loader.__class__.__name__ == 'NamespaceLoader'):
return True
# Otherwise we need to fail with an error that explains what went
# wrong.