aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/panels/cache.py
diff options
context:
space:
mode:
authorAlex Gaynor2009-09-10 11:14:27 -0700
committerAlex Gaynor2009-09-10 11:14:27 -0700
commitd6190014abd950f032755fde33ce32c30fc0e754 (patch)
treef070f1275da92ea9efc545ef049c798499286412 /debug_toolbar/panels/cache.py
parent89a0b38316e1822bf22a4f013a6bb12f9db585b8 (diff)
parent608e3ce3e79e3c2d073cf72d1071b71b324485ee (diff)
downloaddjango-debug-toolbar-d6190014abd950f032755fde33ce32c30fc0e754.tar.bz2
handle merge conflicts
Diffstat (limited to 'debug_toolbar/panels/cache.py')
-rw-r--r--debug_toolbar/panels/cache.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/debug_toolbar/panels/cache.py b/debug_toolbar/panels/cache.py
index 613d4d9..a05d3cc 100644
--- a/debug_toolbar/panels/cache.py
+++ b/debug_toolbar/panels/cache.py
@@ -87,9 +87,12 @@ class CacheDebugPanel(DebugPanel):
self.cache = CacheStatTracker(cache.cache)
cache.cache = self.cache
- def title(self):
+ def nav_title(self):
return 'Cache: %.2fms' % self.cache.total_time
+ def title(self):
+ return 'Cache Usage'
+
def url(self):
return ''