prevent stripping whitespace from end of regex patterns

This commit is contained in:
Alan Hamlett 2017-02-02 11:47:06 -08:00
parent 7f198639aa
commit 9938a67dc9
1 changed files with 3 additions and 3 deletions

View File

@ -243,10 +243,10 @@ def parseArguments():
else:
args.hidefilenames = []
if configs.has_option('settings', 'hidefilenames'):
option = configs.get('settings', 'hidefilenames').strip()
if option.lower() == 'true':
option = configs.get('settings', 'hidefilenames')
if option.strip().lower() == 'true':
args.hidefilenames = ['.*']
elif option.lower() != 'false':
elif option.strip().lower() != 'false':
try:
for pattern in option.split("\n"):
if pattern.strip() != '':