Not all Python modules have a __path__.

This commit is contained in:
Aymeric Augustin 2013-12-19 20:32:00 +01:00
parent 4582993302
commit d4733b6df0
1 changed files with 7 additions and 3 deletions

View File

@ -35,9 +35,13 @@ class AppConfig(object):
self.models = None self.models = None
# Filesystem path to the application directory eg. # Filesystem path to the application directory eg.
# u'/usr/lib/python2.7/dist-packages/django/contrib/admin'. # u'/usr/lib/python2.7/dist-packages/django/contrib/admin'. May be
# This is a unicode object on Python 2 and a str on Python 3. # None if the application isn't a bona fide package eg. if it's an
self.path = upath(self.app_module.__path__[0]) # egg. Otherwise it's a unicode on Python 2 and a str on Python 3.
try:
self.path = upath(self.app_module.__path__[0])
except AttributeError:
self.path = None
def __repr__(self): def __repr__(self):
return '<AppConfig: %s>' % self.label return '<AppConfig: %s>' % self.label