Thread: Calibre recipes
View Single Post
Old 04-25-2009, 07:11 PM   #47
kiklop74
Guru
kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.
 
kiklop74's Avatar
 
Posts: 800
Karma: 194644
Join Date: Dec 2007
Location: Argentina
Device: Kindle Voyage
Your feed url has ' and that breaks the string. Enclose the feed url with double quotes like this:

Code:
feeds = [(u"Alzheimer's Research News", u"yourfeedurl")]
and adding more feeds:

Code:
feeds = [ 
              (u"Alzheimer's Research News", u"yourfeedurl")
             ,(u"bbb", u"yourfeedurl")
             ,(u"ccc", u"yourfeedurl")
           ]
kiklop74 is offline   Reply With Quote