Skip to content

Commit

Permalink
Merge pull request #275 from grazzolini/fix-shlex-typo
Browse files Browse the repository at this point in the history
afew/filters/FolderNameFilter.py: Fix typo on shlex call
  • Loading branch information
GuillaumeSeren committed Aug 26, 2020
2 parents aae2dc3 + 0ae16b6 commit ea9c890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion afew/filters/FolderNameFilter.py
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 ea9c890

Please sign in to comment.