Dear All,

I have written wrapper code for gpodder, Now gpodder is working fine ....but when i list the podcast feed corresponding cover file is not displaying..can any one help me out regarding this


Thanks,
Annappa

class PodcastWrapper(QtCore.QObject):
   def __init__(self, podcast):
       QtCore.QObject.__init__(self)
       self._podcast = podcast

   def _url(self):
       return self._podcast.url

   def _title(self):
       return self._podcast.title

   def _description(self):
       return unicode(self._podcast._podcast.description)

  * def _cover_file(self):
       f = self._podcast._podcast.cover_file
   print f
       if os.path.exists(f):
           return f
       else:
           return 'podcast-0.png'*


_______________________________________________
gpodder-devel mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/gpodder-devel

Reply via email to