Open bhosleabhimanyu opened 10 years ago
Django : 1.6.6 not able to get the profiler to work.
from django.conf.urls.defaults import * ... urlpatterns = patterns( 'profiler.views', url(r'^$', 'global_stats', name='profiler_global_stats'), url(r'^by_view/$', 'stats_by_view', name='profiler_stats_by_view'), url(r'^code/$', 'python_stats', name='profiler_python_stats'),
Fixed here: https://github.com/InviteBox/django-live-profiler/pull/28
Just needed to be updated to use the new Django urls.py system.
urls.py
Django : 1.6.6 not able to get the profiler to work.
from django.conf.urls.defaults import * ... urlpatterns = patterns( 'profiler.views', url(r'^$', 'global_stats', name='profiler_global_stats'), url(r'^by_view/$', 'stats_by_view', name='profiler_stats_by_view'), url(r'^code/$', 'python_stats', name='profiler_python_stats'),