From 70ec40a9d6e7078fbfa049be040b2f654895b08c Mon Sep 17 00:00:00 2001 From: Kailash Choudhary Date: Sun, 22 May 2022 10:18:14 +0530 Subject: [PATCH] Update urls.py file --- django/djsms/broadcast/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/djsms/broadcast/urls.py b/django/djsms/broadcast/urls.py index 42b2527..91e2ed6 100644 --- a/django/djsms/broadcast/urls.py +++ b/django/djsms/broadcast/urls.py @@ -2,6 +2,6 @@ from . import views urlpatterns = [ - url(r'broadcast$', views.broadcast_sms, name="default"), + url('broadcast/', views.broadcast_sms, name="default"), ]