Author: dmeyer
Date: Thu Mar 23 17:06:12 2006
New Revision: 1319

Modified:
   trunk/epg/src/source_vdr.py
   trunk/epg/src/source_xmltv.py
   trunk/epg/src/source_zap2it.py

Log:
fix typo in var name

Modified: trunk/epg/src/source_vdr.py
==============================================================================
--- trunk/epg/src/source_vdr.py (original)
+++ trunk/epg/src/source_vdr.py Thu Mar 23 17:06:12 2006
@@ -137,7 +137,7 @@
 
             info.epg._add_program_to_db(chan_db_id, e.start, 
int(e.start+e.dur),
                                         strutils.str_to_unicode(e.title),
-                                        
description=strutils.str_to_unicode(desc))
+                                        desc=strutils.str_to_unicode(desc))
 
             info.cur +=1
             if info.cur % info.progress_step == 0:

Modified: trunk/epg/src/source_xmltv.py
==============================================================================
--- trunk/epg/src/source_xmltv.py       (original)
+++ trunk/epg/src/source_xmltv.py       Thu Mar 23 17:06:12 2006
@@ -90,7 +90,7 @@
 
 
 ATTR_MAPPING = {
-    'desc': 'description',
+    'desc': 'desc',
     'sub-title': 'subtitle',
     'episode-num': 'episode',
     'category': 'genre' }

Modified: trunk/epg/src/source_zap2it.py
==============================================================================
--- trunk/epg/src/source_zap2it.py      (original)
+++ trunk/epg/src/source_zap2it.py      Thu Mar 23 17:06:12 2006
@@ -153,7 +153,7 @@
     d["rating"] = str_to_unicode(node.prop("tvRating"))
 
     info.epg._add_program_to_db(info.stations_by_id[d["station_id"]]["db_id"], 
d["start"],
-                           d["stop"], d.get("title"), 
description=d.get("desc"))
+                           d["stop"], d.get("title"), desc=d.get("desc"))
 
 
 def parse_program(node, info):


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to