also match on tabs in ini_file (fixes #106) (#4067)

also match on tabs in ini_file
This commit is contained in:
Lukas Grossar 2016-07-01 00:15:49 +02:00 committed by Matt Clay
parent d4cec5ccc1
commit 4a532fb60c

View file

@ -109,16 +109,16 @@ import os
def match_opt(option, line):
option = re.escape(option)
return re.match('%s *=' % option, line) \
or re.match('# *%s *=' % option, line) \
or re.match('; *%s *=' % option, line)
return re.match('%s( |\t)*=' % option, line) \
or re.match('# *%s( |\t)*=' % option, line) \
or re.match('; *%s( |\t)*=' % option, line)
# ==============================================================
# match_active_opt
def match_active_opt(option, line):
option = re.escape(option)
return re.match('%s *=' % option, line)
return re.match('%s( |\t)*=' % option, line)
# ==============================================================
# do_ini