瀏覽代碼

remove \ref from the file link generation - failed in some weird cases

prozessorkern 4 年之前
父節點
當前提交
d7234685c9
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      ext/std/tools/report.py

+ 1 - 1
ext/std/tools/report.py

@@ -68,7 +68,7 @@ class Plugin(mpp.api.Plugin, mpp.api.IConfigurable, mpp.api.IRunable):
                     file.write("Warning list: \\ref metrix_warnings\n\n")
 
                 for file_data in overview_data["matrix"]:
-                    file_data[0] = "\\ref " + str(file_data[0]).replace("\\", "/")
+                    file_data[0] = str(file_data[0]).replace("\\", "/")
 
                 writer = pytablewriter.MarkdownTableWriter()
                 writer.table_name = "metrix overview"