diff mbox series

[layerindex-web] layerindex/urls.py: fix submit/thanks/ url

Message ID 20230929150906.1645388-1-tim.orling@konsulko.com
State Accepted, archived
Commit 7b316cddfbb53c0ea37fcd34577bce9194c2e0ef
Delegated to: Tim Orling
Headers show
Series [layerindex-web] layerindex/urls.py: fix submit/thanks/ url | expand

Commit Message

Tim Orling Sept. 29, 2023, 3:09 p.m. UTC
The url returned by the reverse lookup ends in /submit/thanks/ but
the regex was improperly searching for a string without the terminating "/".

Thank you to Pawel Zalewski for reporting the 404 error.

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
 layerindex/urls.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/layerindex/urls.py b/layerindex/urls.py
index de15bb0..82af699 100644
--- a/layerindex/urls.py
+++ b/layerindex/urls.py
@@ -59,7 +59,7 @@  urlpatterns = [
     url(r'^classes/$',
         RedirectView.as_view(url=reverse_lazy('class_search', args=('master',)), permanent=False)),
     url(r'^submit/$', edit_layer_view, {'template_name': 'layerindex/submitlayer.html'}, name="submit_layer"),
-    url(r'^submit/thanks$',
+    url(r'^submit/thanks/$',
         TemplateView.as_view(
             template_name='layerindex/submitthanks.html'),
         name="submit_layer_thanks"),