Author: dmeyer
Date: Sun Apr 16 21:46:41 2006
New Revision: 1398

Modified:
   trunk/beacon/src/client.py

Log:
check if query is valid before delete

Modified: trunk/beacon/src/client.py
==============================================================================
--- trunk/beacon/src/client.py  (original)
+++ trunk/beacon/src/client.py  Sun Apr 16 21:46:41 2006
@@ -81,7 +81,8 @@
         Disconnect from the server.
         """
         for q in self._queries:
-            q._monitor = False
+            if q:
+                q._monitor = False
         self._queries = []
         self._server = None
         self._monitor = None


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to