summaryrefslogtreecommitdiffstats
path: root/lib/Plugins/Python.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Plugins/Python.cpp')
-rw-r--r--lib/Plugins/Python.cpp19
1 files changed, 9 insertions, 10 deletions
diff --git a/lib/Plugins/Python.cpp b/lib/Plugins/Python.cpp
index c3677e7b..3e6926cd 100644
--- a/lib/Plugins/Python.cpp
+++ b/lib/Plugins/Python.cpp
@@ -9,21 +9,20 @@
std::string CAnalyzerPython::CreateHash(const std::string& pDebugDumpDir)
{
- std::string uuid;
- CDebugDump dd;
- dd.Open(pDebugDumpDir);
- dd.LoadText("uuid", uuid);
- dd.Close();
- return uuid;
+ std::string uuid;
+ CDebugDump dd;
+ dd.Open(pDebugDumpDir);
+ dd.LoadText("uuid", uuid);
+ return uuid;
}
std::string CAnalyzerPython::GetLocalUUID(const std::string& pDebugDumpDir)
{
- return CreateHash(pDebugDumpDir);
+ return CreateHash(pDebugDumpDir);
}
std::string CAnalyzerPython::GetGlobalUUID(const std::string& pDebugDumpDir)
{
- return GetLocalUUID(pDebugDumpDir);
+ return GetLocalUUID(pDebugDumpDir);
}
void CAnalyzerPython::Init()
@@ -39,8 +38,8 @@ void CAnalyzerPython::Init()
void CAnalyzerPython::DeInit()
{
- // TODO: remove copied abrt exception handler
- std::ofstream fOutPySiteCustomize;
+ // TODO: remove copied abrt exception handler
+ std::ofstream fOutPySiteCustomize;
fOutPySiteCustomize.open(PYHOOK_CONFIG);
if (fOutPySiteCustomize.is_open())
{