Skip to content

Commit

Permalink
Fixed a small bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Prayag2 committed Mar 4, 2021
1 parent f0e277c commit fc290c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion konsave
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down

0 comments on commit fc290c5

Please sign in to comment.