aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/views.py
diff options
context:
space:
mode:
authorAymeric Augustin2013-11-24 11:00:43 +0100
committerAymeric Augustin2013-11-24 11:01:44 +0100
commite7692b33ca7fd3f7704d283d6b1368cdea198d59 (patch)
tree57d6954f16cd5b7b4b04331cf49eafc72e602137 /debug_toolbar/views.py
parenta8a98ddde93d1427d2c431cb3f0b18cdfe87616a (diff)
downloaddjango-debug-toolbar-e7692b33ca7fd3f7704d283d6b1368cdea198d59.tar.bz2
Rename storage to store to avoid conflicting with Django terminology.
Diffstat (limited to 'debug_toolbar/views.py')
-rw-r--r--debug_toolbar/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug_toolbar/views.py b/debug_toolbar/views.py
index 109c87a..d46a74e 100644
--- a/debug_toolbar/views.py
+++ b/debug_toolbar/views.py
@@ -9,7 +9,7 @@ from debug_toolbar.toolbar import DebugToolbar
def render_panel(request):
"""Render the contents of a panel"""
- toolbar = DebugToolbar.fetch(request.GET['storage_id'])
+ toolbar = DebugToolbar.fetch(request.GET['store_id'])
if toolbar is None:
content = _("Data for this panel isn't available anymore. "
"Please reload the page and retry.")