From 0dc7e299de9e7410146d173838ccf1a0b197773e Mon Sep 17 00:00:00 2001 From: Shashank Verma <39261691+shank03@users.noreply.github.com> Date: Wed, 4 Oct 2023 10:10:17 +0530 Subject: [PATCH] Update urls.py --- contrihub/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrihub/urls.py b/contrihub/urls.py index 5be650e..93c6478 100644 --- a/contrihub/urls.py +++ b/contrihub/urls.py @@ -31,6 +31,6 @@ ] if BASE_URL: - urlpatterns = [ path(str(BASE_URL), include(basepatterns)) ] + urlpatterns = [path(str(BASE_URL), include(basepatterns))] else: urlpatterns = basepatterns