Merge pull request #1646 from infinyte-solutions/patch-2

Fix SyntaxError in pluginInstaller due to incorrect string handling
This commit is contained in:
Master3395 2026-01-06 23:20:33 +01:00 committed by GitHub
commit d8c46409cb
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)