Both nytimes recipes now need subscriptions

This commit is contained in:
Kovid Goyal 2011-02-23 20:17:51 -07:00
parent fe064ee18d
commit f42f736cc1
2 changed files with 6 additions and 6 deletions

View File

@ -88,8 +88,8 @@ class NYTimes(BasicNewsRecipe):
if headlinesOnly: if headlinesOnly:
title='New York Times Headlines' title='New York Times Headlines'
description = 'Headlines from the New York Times' description = 'Headlines from the New York Times. Needs a subscription from http://www.nytimes.com'
needs_subscription = False needs_subscription = True
elif webEdition: elif webEdition:
title='New York Times (Web)' title='New York Times (Web)'
description = 'New York Times on the Web' description = 'New York Times on the Web'

View File

@ -96,7 +96,7 @@ class NYTimes(BasicNewsRecipe):
if headlinesOnly: if headlinesOnly:
title='New York Times Headlines' title='New York Times Headlines'
description = 'Headlines from the New York Times' description = 'Headlines from the New York Times'
needs_subscription = False needs_subscription = True
elif webEdition: elif webEdition:
title='New York Times (Web)' title='New York Times (Web)'
description = 'New York Times on the Web' description = 'New York Times on the Web'
@ -107,7 +107,7 @@ class NYTimes(BasicNewsRecipe):
needs_subscription = True needs_subscription = True
else: else:
title='New York Times' title='New York Times'
description = 'Today\'s New York Times' description = 'Today\'s New York Times. Needs subscription from http://www.nytimes.com'
needs_subscription = True needs_subscription = True