From d03672e01ef44170998cba14c73cdd66101d755d Mon Sep 17 00:00:00 2001 From: 3wc <3wc.git@doesthisthing.work> Date: Thu, 8 Apr 2021 15:37:00 +0200 Subject: [PATCH] Don't try and reference views.home --- djangoldp_webpushnotification/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/djangoldp_webpushnotification/urls.py b/djangoldp_webpushnotification/urls.py index aaf42e9..0444fa5 100644 --- a/djangoldp_webpushnotification/urls.py +++ b/djangoldp_webpushnotification/urls.py @@ -1,7 +1,7 @@ from django.urls import include, path from django.views.generic import TemplateView -from .views import home, send_push +from .views import send_push urlpatterns = [ path("send_push", send_push),