Python 2.3 compatibility: replaced rsplit with something that works on 2.3.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@13030 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Karen Tracey 2010-04-27 13:40:52 +00:00
parent a43464d67e
commit 33f097e50b
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ def module_has_submodule(mod, submod_name):
# its find_module must be used to search for submodules.
loader = getattr(mod, '__loader__', None)
if loader:
mod_path = "%s.%s" % (mod.__name__.rsplit('.',1)[-1], submod_name)
mod_path = "%s.%s" % (mod.__name__[mod.__name__.rfind('.')+1:], submod_name)
x = loader.find_module(mod_path)
if x is None:
# zipimport.zipimporter.find_module is documented to take