Skip to content

Commit ee085b7

Browse files
authored
Merge pull request #130 from adubkov/release-1.1.7
disable strict mode for configparser
2 parents cfa5b8d + b19b708 commit ee085b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyzabbix/sender.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def _load_from_config(self, config_file):
235235
configparser.RawConfigParser.__init__).kwonlyargs
236236

237237
if 'strict' in args:
238-
params['strict'] = True
238+
params['strict'] = False
239239

240240
config_file_fp = StringIO(config_file_data)
241241
config = configparser.RawConfigParser(**params)

0 commit comments

Comments
 (0)