aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/panels/staticfiles.py
diff options
context:
space:
mode:
Diffstat (limited to 'debug_toolbar/panels/staticfiles.py')
-rw-r--r--debug_toolbar/panels/staticfiles.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/debug_toolbar/panels/staticfiles.py b/debug_toolbar/panels/staticfiles.py
index efaf841..daf8909 100644
--- a/debug_toolbar/panels/staticfiles.py
+++ b/debug_toolbar/panels/staticfiles.py
@@ -6,7 +6,6 @@ except ImportError:
threading = None
from django.conf import settings
-from django.core.exceptions import ImproperlyConfigured
from django.core.files.storage import get_storage_class
from django.contrib.staticfiles import finders, storage
from django.contrib.staticfiles.templatetags import staticfiles
@@ -102,13 +101,6 @@ class StaticFilesPanel(panels.Panel):
storage.staticfiles_storage = staticfiles.staticfiles_storage = _original_storage
@property
- def has_content(self):
- if "django.contrib.staticfiles" not in settings.INSTALLED_APPS:
- raise ImproperlyConfigured("Could not find staticfiles in "
- "INSTALLED_APPS setting.")
- return True
-
- @property
def num_used(self):
return len(self._paths[threading.currentThread()])