mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 08:23:10 +02:00
Disallow string based feeds in recipes
This commit is contained in:
parent
19a738a7b8
commit
b3c1ba969c
1 changed files with 0 additions and 5 deletions
|
|
@ -889,11 +889,6 @@ def __init__(self, options, log, progress_reporter):
|
|||
self.verbose = True
|
||||
self.report_progress = progress_reporter
|
||||
|
||||
if isinstance(self.feeds, basestring):
|
||||
self.feeds = eval(self.feeds)
|
||||
if isinstance(self.feeds, basestring):
|
||||
self.feeds = [self.feeds]
|
||||
|
||||
if self.needs_subscription and (
|
||||
self.username is None or self.password is None or
|
||||
(not self.username and not self.password)):
|
||||
|
|
|
|||
Loading…
Reference in a new issue