2018-12-07 22:52:28 +00:00
|
|
|
from django.urls import re_path
|
2011-06-16 16:41:14 +00:00
|
|
|
|
2014-06-03 11:30:14 +00:00
|
|
|
from . import views
|
|
|
|
|
2015-08-17 17:45:07 +00:00
|
|
|
urlpatterns = [
|
2018-12-07 22:52:28 +00:00
|
|
|
re_path(r'(regex_error/$', views.empty_view),
|
2015-08-17 17:45:07 +00:00
|
|
|
]
|