From 6c187eb978edbb188597a8ec2312ec54526d45cc Mon Sep 17 00:00:00 2001 From: Raphael Kimmig Date: Sat, 18 May 2013 13:27:12 +0200 Subject: [PATCH] Fix example urls include regex --- example/example/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/example/urls.py b/example/example/urls.py index 5de2285..8442fd9 100644 --- a/example/example/urls.py +++ b/example/example/urls.py @@ -5,7 +5,7 @@ admin.autodiscover() urlpatterns = patterns('', # Examples: - url(r'^admin2/$', include('djadmin2.urls')), + url(r'^admin2/', include('djadmin2.urls')), # url(r'^example/', include('example.foo.urls')), # Uncomment the admin/doc line below to enable admin documentation: