Author: duncan
Date: Fri Dec 21 05:31:06 2007
New Revision: 10226

Log:
Changed long to float for Python-2.5 (don't quite know what the difference is)


Modified:
   branches/rel-1-7/freevo/src/tv/plugins/tvtime.py
   branches/rel-1/freevo/src/tv/plugins/tvtime.py

Modified: branches/rel-1-7/freevo/src/tv/plugins/tvtime.py
==============================================================================
--- branches/rel-1-7/freevo/src/tv/plugins/tvtime.py    (original)
+++ branches/rel-1-7/freevo/src/tv/plugins/tvtime.py    Fri Dec 21 05:31:06 2007
@@ -156,11 +156,11 @@
             _debug_('local_conf changed places')
             return 1
 
-        if (long(self.mylocalconf_t) > long(cachelconf_t)):
+        if (float(self.mylocalconf_t) > float(cachelconf_t)):
             _debug_('local_conf modified')
             return 1
 
-        if (long(self.myfconfig_t) > long(cachefconf_t)):
+        if (float(self.myfconfig_t) > float(cachefconf_t)):
             _debug_('fconfig modified')
             return 1
         return 0

Modified: branches/rel-1/freevo/src/tv/plugins/tvtime.py
==============================================================================
--- branches/rel-1/freevo/src/tv/plugins/tvtime.py      (original)
+++ branches/rel-1/freevo/src/tv/plugins/tvtime.py      Fri Dec 21 05:31:06 2007
@@ -156,11 +156,11 @@
             _debug_('local_conf changed places')
             return 1
 
-        if (long(self.mylocalconf_t) > long(cachelconf_t)):
+        if (float(self.mylocalconf_t) > float(cachelconf_t)):
             _debug_('local_conf modified')
             return 1
 
-        if (long(self.myfconfig_t) > long(cachefconf_t)):
+        if (float(self.myfconfig_t) > float(cachefconf_t)):
             _debug_('fconfig modified')
             return 1
         return 0

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to