django/tests/logging_tests/urls_i18n.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
193 B
Python
Raw Permalink Normal View History

from django.conf.urls.i18n import i18n_patterns
from django.http import HttpResponse
from django.urls import path
urlpatterns = i18n_patterns(
path("exists/", lambda r: HttpResponse()),
)