diff options
| author | Jannis Leidel | 2012-03-31 21:16:48 +0200 | 
|---|---|---|
| committer | Jannis Leidel | 2012-03-31 21:17:11 +0200 | 
| commit | 6c05d8d1ccee3e01361dab49b166d362665ff957 (patch) | |
| tree | 7d750c8e60919dc3159077345689f0e3e85c1646 /debug_toolbar | |
| parent | 6e9142da8f56689899779ebe6248b40c0b3409cf (diff) | |
| download | django-debug-toolbar-6c05d8d1ccee3e01361dab49b166d362665ff957.tar.bz2 | |
Removed extended title again from cache panel since the same info is now in the subtitle.
Diffstat (limited to 'debug_toolbar')
| -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 cb608d0..1be6400 100644 --- a/debug_toolbar/panels/cache.py +++ b/debug_toolbar/panels/cache.py @@ -122,7 +122,7 @@ class CacheDebugPanel(DebugPanel):          cache.cache.reset()      def nav_title(self): -        return _('Cache: %.2fms') % cache.cache.total_time +        return _('Cache')      def nav_subtitle(self):          cache_calls = len(cache.cache.calls) | 
