This commit is contained in:
Kovid Goyal 2008-11-17 20:34:57 -08:00
parent e6d872c317
commit 3c7f1a8f17

View File

@ -4,7 +4,7 @@ __copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>'
''' '''
Builtin recipes. Builtin recipes.
''' '''
recipes = [ recipe_modules = [
'newsweek', 'atlantic', 'economist', 'portfolio', 'newsweek', 'atlantic', 'economist', 'portfolio',
'nytimes', 'usatoday', 'outlook_india', 'bbc', 'greader', 'wsj', 'nytimes', 'usatoday', 'outlook_india', 'bbc', 'greader', 'wsj',
'wired', 'globe_and_mail', 'smh', 'espn', 'business_week', 'wired', 'globe_and_mail', 'smh', 'espn', 'business_week',
@ -45,7 +45,7 @@ def load_recipe(module, package='calibre.web.feeds.recipes'):
return obj return obj
recipes = [load_recipe(i) for i in recipes] recipes = [load_recipe(i) for i in recipe_modules]
_tdir = None _tdir = None
_crep = 0 _crep = 0