diff options
| author | bkonkle | 2011-09-15 10:41:09 -0500 | 
|---|---|---|
| committer | bkonkle | 2011-09-15 10:41:09 -0500 | 
| commit | d034c9489dfae0d432361d33ab7e5eb59cf26fbb (patch) | |
| tree | 992b80a16bf75689ff5b7506143ac360cd4f5335 /debug_toolbar/panels/cache.py | |
| parent | 717dc6815a9d4ddcd30efc17db11ade0f8f38354 (diff) | |
| download | django-debug-toolbar-d034c9489dfae0d432361d33ab7e5eb59cf26fbb.tar.bz2 | |
Remove any remaining uses of self.__class__ with super
Diffstat (limited to 'debug_toolbar/panels/cache.py')
| -rw-r--r-- | debug_toolbar/panels/cache.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/debug_toolbar/panels/cache.py b/debug_toolbar/panels/cache.py index c9dae6d..620be86 100644 --- a/debug_toolbar/panels/cache.py +++ b/debug_toolbar/panels/cache.py @@ -77,7 +77,7 @@ class CacheDebugPanel(DebugPanel):      has_content = True      def __init__(self, *args, **kwargs): -        super(self.__class__, self).__init__(*args, **kwargs) +        super(CacheDebugPanel, self).__init__(*args, **kwargs)          # This is hackish but to prevent threading issues is somewhat needed          if isinstance(cache.cache, CacheStatTracker):              cache.cache.reset() | 
