Fixed #458 -- Added /r/ to default admin urlconf

git-svn-id: http://code.djangoproject.com/svn/django/trunk@620 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-09-04 18:20:57 +00:00
parent 1a010f8b29
commit fc9d457686
1 changed files with 1 additions and 0 deletions

View File

@ -2,4 +2,5 @@ from django.conf.urls.defaults import *
urlpatterns = patterns('',
(r'^admin/', include('django.conf.urls.admin')),
(r'^r/', include('django.conf.urls.shortcut')),
)