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

Modified Files:
        config.py 
Log Message:
* TRUE/FALSE wasn't working in Python 2.3...
* Wrapped the tagging function in a try: except because it failed on a data
   track and Freevo needed to be restarted to rip another CD.



Index: config.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/config.py,v
retrieving revision 1.49
retrieving revision 1.50
diff -C2 -d -r1.49 -r1.50
*** config.py   14 Sep 2003 20:08:11 -0000      1.49
--- config.py   14 Sep 2003 20:47:48 -0000      1.50
***************
*** 23,26 ****
--- 23,31 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.50  2003/09/14 20:47:48  outlyer
+ # * TRUE/FALSE wasn't working in Python 2.3...
+ # * Wrapped the tagging function in a try: except because it failed on a data
+ #    track and Freevo needed to be restarted to rip another CD.
+ #
  # Revision 1.49  2003/09/14 20:08:11  dischi
  # o add TRUE and FALSE to the buildin objects for Python < 2.3
***************
*** 177,181 ****
  
  # add TRUE and FALSE to __builtin__ for older python versions
! if float(sys.version[0:3]) < 2.3:
      __builtin__.__dict__['TRUE']  = 1
      __builtin__.__dict__['FALSE'] = 0
--- 182,186 ----
  
  # add TRUE and FALSE to __builtin__ for older python versions
! if float(sys.version[0:3]) < 2.4:
      __builtin__.__dict__['TRUE']  = 1
      __builtin__.__dict__['FALSE'] = 0




-------------------------------------------------------
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