aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/panels/cache.py
diff options
context:
space:
mode:
authorJannis Leidel2012-03-31 21:16:48 +0200
committerJannis Leidel2012-03-31 21:17:11 +0200
commit6c05d8d1ccee3e01361dab49b166d362665ff957 (patch)
tree7d750c8e60919dc3159077345689f0e3e85c1646 /debug_toolbar/panels/cache.py
parent6e9142da8f56689899779ebe6248b40c0b3409cf (diff)
downloaddjango-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/panels/cache.py')
-rw-r--r--debug_toolbar/panels/cache.py2
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)