Skip to content

Commit

Permalink
re_path
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamgilbert committed Nov 7, 2024
1 parent c8f3728 commit 1361abd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions sal/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from django.conf.urls.static import static
from django.contrib import admin
from django.contrib.staticfiles import views
from django.urls import path, include, url
from django.urls import path, include, re_path

admin.autodiscover()
urlpatterns = []
Expand Down Expand Up @@ -39,5 +39,5 @@

if settings.USE_SAML:
urlpatterns += [
url(r"^saml2/", include("djangosaml2.urls")),
re_path(r"^saml2/", include("djangosaml2.urls")),
]
2 changes: 1 addition & 1 deletion sal/version.plist
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<plist version="1.0">
<dict>
<key>version</key>
<string>4.4.0.2303</string>
<string>4.4.0.2304</string>
</dict>
</plist>

0 comments on commit 1361abd

Please sign in to comment.