diff options
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'), +) |
