From fc290c5acafd5c5fa7c58e6c30955e4549659ed6 Mon Sep 17 00:00:00 2001 From: Prayag Jain Date: Thu, 4 Mar 2021 19:18:10 +0530 Subject: [PATCH] Fixed a small bug --- konsave | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/konsave b/konsave index e24d5f3..943648e 100755 --- a/konsave +++ b/konsave @@ -36,7 +36,7 @@ def search_config(path, section, option): ''' This function will parse config files and search for specific values ''' - config = configparser.ConfigParser() + config = configparser.ConfigParser(strict = False) config.read(path) return config[section][option]