"""
URLpatterns for the debug toolbar.
These should not be loaded explicitly; the debug toolbar middleware will patch
this into the urlconf for the request.
"""fromdjango.conf.urls.defaultsimport*fromdjango.confimportsettingsurlpatterns=patterns('',url('^__debug__/m/(.*)$','debug_toolbar.views.debug_media',name='debug_toolbar_media'),)