diff options
Diffstat (limited to 'clang/utils/analyzer/CmpRuns.py')
-rwxr-xr-x | clang/utils/analyzer/CmpRuns.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/clang/utils/analyzer/CmpRuns.py b/clang/utils/analyzer/CmpRuns.py index 6d4be712994..e68c45df184 100755 --- a/clang/utils/analyzer/CmpRuns.py +++ b/clang/utils/analyzer/CmpRuns.py @@ -77,9 +77,10 @@ class AnalysisDiagnostic: def getReportData(self): if self.htmlReport is None: return " " - - return open(os.path.join(self.report.run.path, - self.htmlReport), "rb").read() + return os.path.join(self.report.run.path, self.htmlReport) + # We could also dump the report with: + # return open(os.path.join(self.report.run.path, + # self.htmlReport), "rb").read() class AnalysisRun: def __init__(self, path, opts): |