CaCO3 преди 2 години
родител
ревизия
246f9cfc31
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      tools/parameter-tooltip-generator/generate-param-doc-tooltips.py

+ 1 - 1
tools/parameter-tooltip-generator/generate-param-doc-tooltips.py

@@ -55,7 +55,7 @@ def generateHtmlTooltip(section, parameter, markdownFile):
     # Add the tooltip to the config page
     # Add the tooltip to the config page
     with open(docsMainFolder + "/" + configPage, 'r') as configPageHandle:
     with open(docsMainFolder + "/" + configPage, 'r') as configPageHandle:
         configPageContent = configPageHandle.read()
         configPageContent = configPageHandle.read()
-    configPageContent = configPageContent.replace("<td>$TOOLTIP_" + section + "_" + parameter, "<td>" + htmlTooltip")
+    configPageContent = configPageContent.replace("<td>$TOOLTIP_" + section + "_" + parameter, "<td>" + htmlTooltip)
     with open(docsMainFolder + "/" + configPage, 'w') as configPageHandle:
     with open(docsMainFolder + "/" + configPage, 'w') as configPageHandle:
         configPageHandle.write(configPageContent)
         configPageHandle.write(configPageContent)