From 0352440c89735b3db30eab840865f77e4732daf1 Mon Sep 17 00:00:00 2001
From: Alexey Stratulat <alexey.stratulat@demlabs.net>
Date: Sat, 29 Jun 2019 00:20:09 +0700
Subject: [PATCH] The function dap_dane has been changed, the closing of the
 configuration file has been added. Changed the test, removed the extra line
 break.

---
 src/libdap-python.c | 1 +
 test/main_test.py   | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/libdap-python.c b/src/libdap-python.c
index 56da14d..434431c 100644
--- a/src/libdap-python.c
+++ b/src/libdap-python.c
@@ -26,6 +26,7 @@ static PyObject *dap_init(PyObject *self, PyObject *args){
 }
 
 static PyObject *dap_deinit(){
+    dap_config_close(g_config);
     dap_config_deinit();
     dap_common_deinit();
     return PyLong_FromLong(0);
diff --git a/test/main_test.py b/test/main_test.py
index b4ea8e7..23f87b6 100644
--- a/test/main_test.py
+++ b/test/main_test.py
@@ -34,7 +34,7 @@ output_info("Outputting a string using the log_it function done")
 res1 = libdapConnector.configGetItem("server", "listen_address")
 output_info("Output [server] 'listen_address' = "+res1+"\n")
 res2 = libdapConnector.configGetItemDefault("server1", "listen_address", "8.8.8.8")
-output_info("Output default value '8.8.8.8' \n [server1] 'listen_address' = "+res2+"\n")
+output_info("Output default value '8.8.8.8' [server1] 'listen_address' = "+res2+"\n")
 output_info("TEST. Get default config done")
 libdapConnector.deInit()
 output_info("Deinitialization done")
-- 
GitLab