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