diff options
Diffstat (limited to 'debug_toolbar/panels/__init__.py')
| -rw-r--r-- | debug_toolbar/panels/__init__.py | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/debug_toolbar/panels/__init__.py b/debug_toolbar/panels/__init__.py index 9998196..8be87e1 100644 --- a/debug_toolbar/panels/__init__.py +++ b/debug_toolbar/panels/__init__.py @@ -37,9 +37,6 @@ class DebugPanel(object):          """Title showing in panel"""          raise NotImplementedError -    def url(self): -        raise NotImplementedError -      def content(self):          if self.has_content:              context = self.context.copy() @@ -59,6 +56,7 @@ class DebugPanel(object):          return toolbar.stats.get(self.slug, {})      # Standard middleware methods +      def process_request(self, request):          pass | 
