Added docstring

This commit is contained in:
Rudi Grinberg 2012-10-02 10:32:10 -04:00
parent 672102da6f
commit f7daf4e737
1 changed files with 5 additions and 0 deletions

View File

@ -13,6 +13,11 @@ import media.monitor.pure as mmp
class ManagerTimeout(threading.Thread,Loggable):
"""
The purpose of this class is to flush the organize directory every 3
secnods. This used to be just a work around for cc-4235 but recently
became a permanent solution because it's "cheap" and reliable
"""
def __init__(self, manager):
threading.Thread.__init__(self)
self.manager = manager