Search found 1 match

by Commodore
April 22nd, 2013, 4:37 am
Forum: Bug Reports
Topic: [0.7.11] RequireCat not working in RSS feed
Replies: 1
Views: 1211

[0.7.11] RequireCat not working in RSS feed

because it's missing some code made the following changes to rss.py to fix it: @@ -418,20 +418,22 @@ for n in xrange(regcount): if reEnabled[n]: if category and reTypes[n] == 'C': - found = re.search(regexes[n], category) + found = regexes[n].search(category) if not found: - logging.debug("Filt...