Skip to content

Commit

Permalink
afew/filters/FolderNameFilter.py: Fix type on shlex call
Browse files Browse the repository at this point in the history
Commit 77bc879 introduced a typo on the shlex
call.
  • Loading branch information
grazzolini committed Jun 1, 2020
1 parent 9bcecab commit 0ae16b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion afew/filters/FolderNameFilter.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def __init__(self, database, folder_blacklist='', folder_transforms='',
self.__filename_pattern = '{mail_root}/(?P<maildirs>.*)/(cur|new)/[^/]+'.format(
mail_root=notmuch_settings.get('database', 'path').rstrip('/'))
self.__folder_explicit_list = set(shlex.split(folder_explicit_list))
self.__folder_blacklist = set(shelx.split(folder_blacklist))
self.__folder_blacklist = set(shlex.split(folder_blacklist))
self.__folder_transforms = self.__parse_transforms(folder_transforms)
self.__folder_lowercases = folder_lowercases != ''
self.__maildir_separator = maildir_separator
Expand Down

0 comments on commit 0ae16b6

Please sign in to comment.