Merge pull request #4857 from snelweg/snelweg-patch-1

[Path] PathSanity.py now outputs fillename for the report the same as the postprocessor job
This commit is contained in:
sliptonic
2021-06-16 15:03:35 -05:00
committed by GitHub

View File

@@ -404,8 +404,8 @@ class CommandPathSanity:
# Save the report
reportraw = self.outputpath + 'setupreport.asciidoc'
reporthtml = self.outputpath + 'setupreport.html'
reportraw = self.outputpath + job.PostProcessorOutputFile + '.asciidoc'
reporthtml = self.outputpath + job.PostProcessorOutputFile + '.html'
with open(reportraw, 'w') as fd:
fd.write(report)
fd.close()