diff options
| author | Bryan Veloso | 2008-09-22 18:19:43 -0700 |
|---|---|---|
| committer | Bryan Veloso | 2008-09-22 18:19:43 -0700 |
| commit | 0f7afe0ff0c722b86cf90085ae72e7d397403500 (patch) | |
| tree | 7913f88f671e6b6d878aacecd6829aa54e25a963 /debug_toolbar/urls.py | |
| parent | 276e1c284aa976f69c68230591b9f7fd1fbbc676 (diff) | |
| parent | 5a711759e75bfef4788498d9cfaa9fe019bcd15d (diff) | |
| download | django-debug-toolbar-0f7afe0ff0c722b86cf90085ae72e7d397403500.tar.bz2 | |
Merge branch 'master' of git@github.com:revyver/django-debug-toolbar
Diffstat (limited to 'debug_toolbar/urls.py')
| -rw-r--r-- | debug_toolbar/urls.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/debug_toolbar/urls.py b/debug_toolbar/urls.py index 26a5ca2..e0e4b7a 100644 --- a/debug_toolbar/urls.py +++ b/debug_toolbar/urls.py @@ -4,10 +4,10 @@ URLpatterns for the debug toolbar. These should not be loaded explicitly; the debug toolbar middleware will patch this into the urlconf for the request. """ - from django.conf.urls.defaults import * from django.conf import settings -urlpatterns = patterns('', - url('^__debug__/m/(.*)$', 'debug_toolbar.views.debug_media'), -)
\ No newline at end of file +urlpatterns = patterns('', + url(r'^__debug__/m/(.*)$', 'debug_toolbar.views.debug_media'), + url(r'^__debug__/sql_explain/$', 'debug_toolbar.views.sql_explain', name='sql_explain'), +) |
