You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The list of excluded directories is space-separated and it seems like quoting path names with " or ' or escaping with \ doesn't have an effect. This is the behavior I would expect from the code dirs_excluded = settings.value('directories_excluded').strip().split()
I know that really "parsing" the setting is some inconvenient work and so I'd like to suggest to check if the last character of a field (after split) is a \ and then just concatenate it with the next one and a space to allow at least the escaping approach.
However I have not looked deeper in the code how the results are used and if this would introduce some trouble elsewhere..
The text was updated successfully, but these errors were encountered:
The list of excluded directories is space-separated and it seems like quoting path names with
"
or'
or escaping with\
doesn't have an effect. This is the behavior I would expect from the codedirs_excluded = settings.value('directories_excluded').strip().split()
I know that really "parsing" the setting is some inconvenient work and so I'd like to suggest to check if the last character of a field (after split) is a
\
and then just concatenate it with the next one and a space to allow at least the escaping approach.However I have not looked deeper in the code how the results are used and if this would introduce some trouble elsewhere..
The text was updated successfully, but these errors were encountered: