mirror of
https://github.com/Hopiu/django.git
synced 2026-04-05 07:31:03 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16539 bcc190cf-cafb-0310-a4f2-bffc1f526a37
8 lines
301 B
Python
8 lines
301 B
Python
from django.conf.urls.defaults import include, url
|
|
from django.conf.urls.i18n import i18n_patterns
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
urlpatterns = i18n_patterns('',
|
|
url(_(r'^account/'), include('regressiontests.i18n.patterns.urls.wrong_namespace', namespace='account')),
|
|
)
|