Update of /cvsroot/freevo/freevo/src/record
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14701/src/record

Modified Files:
        server.py 
Log Message:
This should keep updateFavoritesSchedule from stopping a running recording 
if it is a favorite.


Index: server.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/record/server.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** server.py   9 Aug 2004 12:11:41 -0000       1.3
--- server.py   13 Aug 2004 12:29:14 -0000      1.4
***************
*** 8,11 ****
--- 8,15 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.4  2004/08/13 12:29:14  rshortt
+ # This should keep updateFavoritesSchedule from stopping a running recording
+ # if it is a favorite.
+ #
  # Revision 1.3  2004/08/09 12:11:41  rshortt
  # -Add some TODO comments.
***************
*** 615,619 ****
              # if prog.start <= last and favorite:
              (isFav, favorite) = self.isProgAFavorite(prog, favs)
!             if prog.start <= last and isFav:
                  self.removeScheduledRecording(prog)
      
--- 619,625 ----
              # if prog.start <= last and favorite:
              (isFav, favorite) = self.isProgAFavorite(prog, favs)
!             now = time.time()
!             if prog.start <= last and isFav and \
!                not (prog.start <= now and prog.stop > now):
                  self.removeScheduledRecording(prog)
      



-------------------------------------------------------
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to