Skip to content

Commit

Permalink
Merge pull request #23 from will-moore/django-4-0
Browse files Browse the repository at this point in the history
django 4.0
  • Loading branch information
will-moore authored Jun 15, 2023
2 parents d9804ef + a8bd55d commit aa18fd1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions omero_weberror/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
# Version: 1.0
#

from django.conf.urls import url
from django.urls import re_path
from . import views

urlpatterns = [
url(r'^error_404/$', views.error404, name="weberror404"),
url(r'^error_500/$', views.error500, name="weberror500"),
url(r'^warning/$', views.warning, name="weberrorwarn"),
re_path(r'^error_404/$', views.error404, name="weberror404"),
re_path(r'^error_500/$', views.error500, name="weberror500"),
re_path(r'^warning/$', views.warning, name="weberrorwarn"),
]

0 comments on commit aa18fd1

Please sign in to comment.