From b7a97bacff0d903fdb0c4edef43cf5f44f6ae7f2 Mon Sep 17 00:00:00 2001 From: Infinyte Solutions Date: Tue, 6 Jan 2026 14:30:45 -0500 Subject: [PATCH] Fix SyntaxError in pluginInstaller string construction Replaced malformed string concatenation with an f-string to prevent syntax errors during plugin installation. --- pluginInstaller/pluginInstaller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pluginInstaller/pluginInstaller.py b/pluginInstaller/pluginInstaller.py index 6c0c4e46d..07e0f2c55 100644 --- a/pluginInstaller/pluginInstaller.py +++ b/pluginInstaller/pluginInstaller.py @@ -57,7 +57,7 @@ class pluginInstaller: for items in data: if items.find("manageservices") > -1: writeToFile.writelines(items) - writeToFile.writelines(" path("pluginName + "/',include('" + pluginName + ".urls')),\n") + writeToFile.writelines(" path(\r'" + pluginName + "/', include('" + pluginName + ".urls')),\n") else: writeToFile.writelines(items)