Fix SyntaxError in pluginInstaller string construction

Replaced malformed string concatenation with an f-string to prevent syntax errors during plugin installation.
This commit is contained in:
Infinyte Solutions 2026-01-06 14:30:45 -05:00 committed by GitHub
parent 7fc3bce31e
commit b7a97bacff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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)