From 36f342f05e37b2bd2add70eebc5e352861950bd6 Mon Sep 17 00:00:00 2001 From: Oliver Date: Wed, 12 Jan 2022 09:21:34 +1100 Subject: [PATCH] URL fix --- InvenTree/InvenTree/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/InvenTree/urls.py b/InvenTree/InvenTree/urls.py index 445dea13ca..74019838bb 100644 --- a/InvenTree/InvenTree/urls.py +++ b/InvenTree/InvenTree/urls.py @@ -185,7 +185,7 @@ frontendpatterns = [ # Append custom plugin URLs (if plugin support is enabled) if settings.PLUGINS_ENABLED: - frontendpatterns += get_plugin_urls() + frontendpatterns.append(get_plugin_urls()) urlpatterns = [ url('', include(frontendpatterns)),