forked from praekelt/django-object-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__init__.py
25 lines (22 loc) · 926 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from object_tools.options import ObjectTool
from object_tools.sites import tools
def autodiscover():
"""
Auto-discover INSTALLED_APPS tools.py modules and fail silently when
not present. This forces an import on them to register any object
tools they may want.
"""
from django.conf import settings
from django.utils.importlib import import_module
from django.utils.module_loading import module_has_submodule
for app in settings.INSTALLED_APPS:
mod = import_module(app)
# Attempt to import the app's tools module.
try:
import_module('%s.tools' % app)
except:
# Decide whether to bubble up this error. If the app just
# doesn't have an tools module, we can ignore the error
# attempting to import it, otherwise we want it to bubble up.
if module_has_submodule(mod, 'tools'):
raise