DIR:/proc/self/root/usr/local/lib/python3.6/site-packages/django/contrib/staticfiles/ |
Current File : //proc/self/root/usr/local/lib/python3.6/site-packages/django/contrib/staticfiles/checks.py |
from django.contrib.staticfiles.finders import get_finders def check_finders(app_configs=None, **kwargs): """Check all registered staticfiles finders.""" errors = [] for finder in get_finders(): try: finder_errors = finder.check() except NotImplementedError: pass else: errors.extend(finder_errors) return errors |