From bff657e4dba9162d9132649e4172f1d17e12c4a7 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Wed, 30 Jun 2010 18:37:49 +0200 Subject: add rating to python crashes --- lib/Plugins/Python.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'lib/Plugins/Python.cpp') diff --git a/lib/Plugins/Python.cpp b/lib/Plugins/Python.cpp index 12cc47ef..fc3e41c5 100644 --- a/lib/Plugins/Python.cpp +++ b/lib/Plugins/Python.cpp @@ -82,6 +82,14 @@ string CAnalyzerPython::GetGlobalUUID(const char *pDebugDumpDir) return GetLocalUUID(pDebugDumpDir); } +void CAnalyzerPython::CreateReport(const char *pDebugDumpDir, int force) +{ + CDebugDump dd; + dd.Open(pDebugDumpDir); + dd.SaveText(FILENAME_RATING, "4"); + dd.Close(); +} + void CAnalyzerPython::Init() { } -- cgit