Update of /cvsroot/freevo/freevo/src/tv
In directory sc8-pr-cvs1:/tmp/cvs-serv6378

Modified Files:
        record_video.py 
Log Message:
PopupBox expects "StringType" which for some reason, doesn't include
UnicodeType, so it crashes when you shcedule a recording. Ideally, we'd
"extend" StringType to also include UnicodeType, but I don't know how yet,
so consider this a short term crash fix.


Index: record_video.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/record_video.py,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** record_video.py     1 Sep 2003 19:46:03 -0000       1.26
--- record_video.py     1 Sep 2003 21:32:00 -0000       1.27
***************
*** 35,38 ****
--- 35,44 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.27  2003/09/01 21:32:00  outlyer
+ # PopupBox expects "StringType" which for some reason, doesn't include
+ # UnicodeType, so it crashes when you shcedule a recording. Ideally, we'd
+ # "extend" StringType to also include UnicodeType, but I don't know how yet,
+ # so consider this a short term crash fix.
+ #
  # Revision 1.26  2003/09/01 19:46:03  dischi
  # add menuw to eventhandler, it may be needed
***************
*** 300,304 ****
  
      s = 'Scheduled recording:\n'
!     s += 'Channel %s\n' % tunername
      s += '%s %s %s min' % (recinfo.start_date.selected, recinfo.start_time.selected,
                             recinfo.length.selected)
--- 306,310 ----
  
      s = 'Scheduled recording:\n'
!     s += 'Channel %s\n' % tunername.encode('Latin-1')
      s += '%s %s %s min' % (recinfo.start_date.selected, recinfo.start_time.selected,
                             recinfo.length.selected)




-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to