Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed #13404 -- Reworked module_has_submodule() to allow it to work u…
…nder AppEngine. Thanks to Waldemar Kornewald for the report and testing help.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@13023 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed Apr 25, 2010
1 parent d2fec79 commit 9872bad
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions django/utils/module_loading.py
Expand Up @@ -2,18 +2,17 @@
import imp

def module_has_submodule(mod, submod_name):
# If the module was loaded from an egg, __loader__ will be set and
# If the module was loaded from an egg, __loader__ will be set and
# its find_module must be used to search for submodules.
loader = getattr(mod, '__loader__', None)
if loader:
mod_path = "%s.%s" % (mod.__name__, submod_name)
mod_path = mod_path[len(loader.prefix):]
mod_path = "%s.%s" % (mod.__name__.rsplit('.',1)[-1], submod_name)
x = loader.find_module(mod_path)
if x is None:
# zipimport.zipimporter.find_module is documented to take
# dotted paths but in fact through Pyton 2.7 is observed
# dotted paths but in fact through Python 2.7 is observed
# to require os.sep in place of dots...so try using os.sep
# if the dotted path version failed to find the requested
# if the dotted path version failed to find the requested
# submodule.
x = loader.find_module(mod_path.replace('.', os.sep))
return x is not None
Expand Down

0 comments on commit 9872bad

Please sign in to comment.