Dirk Meyer wrote:
> Duncan Webb wrote:
>> Author: duncan
>> Date: Wed Dec  5 14:42:43 2007
>> New Revision: 10176
>>
>> Log:
>> Fixed the timer continuing to run after shutdown
> 
> You can check the kaa.notifier.shutting_down


You mean check the global variable shutting_down at the beginning of the
timer handler? I did a quick search in the notifier code an couldn't
find an access function.

So it should be called like this:
| def timer_handler():
|  if kaa.notifier.shutting_down:
|    return False
|
|  ....
|  return True

Duncan


-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to