Author: duncan
Date: Tue Feb 26 16:15:33 2008
New Revision: 10451

Log:
Fixed a bug caused when changing a RLock to a Lock.
Not sure why this is a bug as the manual says it can take a keyword argument


Modified:
   branches/rel-1-7/freevo/src/childapp.py
   branches/rel-1/freevo/src/childapp.py

Modified: branches/rel-1-7/freevo/src/childapp.py
==============================================================================
--- branches/rel-1-7/freevo/src/childapp.py     (original)
+++ branches/rel-1-7/freevo/src/childapp.py     Tue Feb 26 16:15:33 2008
@@ -238,7 +238,7 @@
             #raise 'already dead'
             return
 
-        locked = self.lock.acquire(blocking=0)
+        locked = self.lock.acquire()
         try:
             # maybe child is dead and only waiting?
             if self.child.poll() is not None:

Modified: branches/rel-1/freevo/src/childapp.py
==============================================================================
--- branches/rel-1/freevo/src/childapp.py       (original)
+++ branches/rel-1/freevo/src/childapp.py       Tue Feb 26 16:15:33 2008
@@ -238,7 +238,7 @@
             #raise 'already dead'
             return
 
-        locked = self.lock.acquire(blocking=0)
+        locked = self.lock.acquire()
         try:
             # maybe child is dead and only waiting?
             if self.child.poll() is not None:

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
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