View Single Post
Old 07-15-2016, 12:42 PM   #9
bubak
Connoisseur
bubak began at the beginning.
 
Posts: 65
Karma: 10
Join Date: Dec 2010
Device: kindle voyage
Too fast with the Enter key :-( There is a missing strip:

- if opts.tags.get(account, False) and not (set(opts.tags[account].split(',')) & set (mi.tags)):
+ if opts.tags.get(account, False) and not (set([t.strip() for t in opts.tags[account].split(',')]) & set (mi.tags)):
bubak is offline   Reply With Quote