return set() instead of None

This commit is contained in:
Christophe Benz 2010-07-19 17:08:10 +02:00
commit cb32d30e4e
2 changed files with 2 additions and 2 deletions

View file

@ -45,7 +45,7 @@ class YoujizzBackend(BaseBackend, ICapVideo):
def iter_search_results(self, pattern=None, sortby=ICapVideo.SEARCH_RELEVANCE, nsfw=False):
if not nsfw:
return
return set()
return self.browser.iter_search_results(pattern)
def fill_video(self, video, fields):