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:
parent
7fc3bce31e
commit
b7a97bacff
|
|
@ -57,7 +57,7 @@ class pluginInstaller:
|
||||||
for items in data:
|
for items in data:
|
||||||
if items.find("manageservices") > -1:
|
if items.find("manageservices") > -1:
|
||||||
writeToFile.writelines(items)
|
writeToFile.writelines(items)
|
||||||
writeToFile.writelines(" path("pluginName + "/',include('" + pluginName + ".urls')),\n")
|
writeToFile.writelines(" path(\r'" + pluginName + "/', include('" + pluginName + ".urls')),\n")
|
||||||
else:
|
else:
|
||||||
writeToFile.writelines(items)
|
writeToFile.writelines(items)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue